summaryrefslogtreecommitdiff
path: root/graphics/dot2tex/examples/showpoints.dot
blob: a84d24d05bf47db6bf7b8dd9d321c822e2e1d96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
:Title: Control points
:Tags: PSTricks

This example uses the ``showpoints`` PSTricks style to show the
control points of the edge curves. 

Generated with::

    $ dot2tex.py -fpst showpoints.dot > showpoints.tex


*/
digraph G {
	size = "8,8";
	{rank=min S8 S24 S1 S35 S30}
	{rank=max T8 T24 T1 T35 T30}
	edge [style="showpoints=true, linecolor=red"];
	node [style="fillstyle=solid"];
	S8 -> 9;
	S24 -> 27;
	S24 -> 25;
	S1 -> 10;
	S1 -> 2;
	S35 -> 36;
	S35 -> 43;
	S30 -> 31;
	S30 -> 33;
	9 -> 42;
	9 -> T1;
	25 -> T1;
	25 -> 26;
	27 -> T24;
	2 -> 3;
	2 -> 16;
	2 -> 17;
	2 -> T1;
	2 -> 18;
	10 -> 11;
	10 -> 14;
	10 -> T1;
	10 -> 13;
	10 -> 12;
	31 -> T1;
	31 -> 32;
	33 -> T30;
	33 -> 34;
	42 -> 4;
	26 -> 4;
	3 -> 4;
	16 -> 15;
	17 -> 19;
	18 -> 29;
	11 -> 4;
	14 -> 15;
	37 -> 39;
	37 -> 41;
	37 -> 38;
	37 -> 40;
	13 -> 19;
	12 -> 29;
	43 -> 38;
	43 -> 40;
	36 -> 19;
	32 -> 23;
	34 -> 29;
	39 -> 15;
	41 -> 29;
	38 -> 4;
	40 -> 19;
	4 -> 5;
	19 -> 21;
	19 -> 20;
	19 -> 28;
	5 -> 6;
	5 -> T35;
	5 -> 23;
	21 -> 22;
	20 -> 15;
	28 -> 29;
	6 -> 7;
	15 -> T1;
	22 -> 23;
	22 -> T35;
	29 -> T30;
	7 -> T8;
	23 -> T24;
	23 -> T1; 
}