Changes between Initial Version and Version 1 of GraphvizExamples/GraphvizExample3
- Timestamp:
- 2006-09-17T02:33:26+02:00 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GraphvizExamples/GraphvizExample3
v1 v1 1 {{{ 2 #!graphviz 3 digraph G { 4 5 subgraph cluster_0 { 6 style=filled; 7 color=lightgrey; 8 node [style=filled,color=white]; 9 a0 -> a1 -> a2 -> a3; 10 label = "process #1"; 11 } 12 13 subgraph cluster_1 { 14 node [style=filled]; 15 b0 -> b1 -> b2 -> b3; 16 label = "process #2"; 17 color=blue 18 } 19 start -> a0; 20 start -> b0; 21 a1 -> b3; 22 b2 -> a3; 23 a3 -> a0; 24 a3 -> end; 25 b3 -> end; 26 27 start [shape=Mdiamond]; 28 end [shape=Msquare]; 29 } 30 }}}

