source: graphvizplugin/branches/1.0/examples/GraphvizExamples%2FGraphvizExample3

Last change on this file was 193, checked in by Peter Kropf, 18 years ago

GraphvizPlugin:

merged branches/0.9/v0.4 changes r182:192 into the trunk (0.9).

File size: 448 bytes
Line 
1{{{
2#!graphviz
3digraph 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}}}
Note: See TracBrowser for help on using the repository browser.