User:Barre: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
Line 55: Line 55:


<graphviz>
<graphviz>
digraph G {
digraph G {
   rankdir=LR;
   rankdir=LR;
Line 63: Line 62:
   1 [label="Start", peripheries=2];
   1 [label="Start", peripheries=2];
   2 [label="Finish", peripheries=2];
   2 [label="Finish", peripheries=2];
   3 [label="Step1|Interaction"];
   3 [label="Interaction"];
   4 [label="Step1|Validation"];
   4 [label="Validation"];
   5 [label="Step2|Interaction"];
   5 [label="Interaction"];
   6 [label="Step2|Validation"];
   6 [label="Validation"];
   7 [label="Step3|Interaction"];
   7 [label="Interaction"];
   8 [label="Step3|Validation"];
   8 [label="Validation"];


   3 -> 4 [label="Next"];
   3 -> 4 [label="next"];
   4 -> 3 [label="Invalid"];
   4 -> 3 [label="invalid"];
   5 -> 6 [label="Next"];
   5 -> 6 [label="next"];
   6 -> 5 [label="Invalid"];
   6 -> 5 [label="invalid"];
   4 -> 5 [label="Valid"];
   4 -> 5 [label="valid"];
   7 -> 8 [label="Next"];
   7 -> 8 [label="next"];
   8 -> 7 [label="Invalid"];
   8 -> 7 [label="invalid"];
   6 -> 7 [label="Valid"];
   6 -> 7 [label="valid"];
   1 -> 3 [label="Next"];
   1 -> 3 [label="next"];
   8 -> 2 [label="Valid"];
   8 -> 2 [label="valid"];


   subgraph cluster1 {
   subgraph cluster1 {
Line 86: Line 85:
     style=dashed;
     style=dashed;
     fontname="Helvetica";
     fontname="Helvetica";
     label="Step1"
     label="1"
     3;
     3;
     4;
     4;
Line 96: Line 95:
     style=dashed;
     style=dashed;
     fontname="Helvetica";
     fontname="Helvetica";
     label="Step2"
     label="2"
     5;
     5;
     6;
     6;
Line 106: Line 105:
     style=dashed;
     style=dashed;
     fontname="Helvetica";
     fontname="Helvetica";
     label="Step3"
     label="3"
     7;
     7;
     8;
     8;

Revision as of 17:39, 7 November 2006

<kw_bread_crumbs>prefix=» |small=1|bgcolor=F9F9F9|trim_prefix=User:|on_top_hack=1</kw_bread_crumbs>

Wiki

Slicer

C/C++

CMake stuff

  • Add a 'cvsupdate' target to update the source tree from the build tree:
ADD_CUSTOM_TARGET(cvsupdate ${CMAKE_COMMAND} -E chdir "${CMAKE_SOURCE_DIR}" "${CVSCOMMAND}" update)

State Machine

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

Wizard Workflow

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.