File: colors.dot

package info (click to toggle)
dot2tex 2.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 968 kB
  • ctags: 337
  • sloc: python: 3,057; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Test stroke and fill coloring */
digraph G {

a [color=red];
b [style="filled", fillcolor=blue];
c [style="filled", color=yellow];
d [style=filled];
b [style="filled", fillcolor=pink, color=green];
f [style="filled", fillcolor="0.051 0.718 0.627",color="#40e0d0"];
g [color="#ffff00"];
a -> {b c d e f g};
i -> b [color=red];
i -> d [color="#ffff00"];
i -> d [color="0.051 0.718 0.627"];


}