comparison toolboxes/graph_visualisation/share/graphviz/graphs/directed/ctext.gv @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 digraph G {
2 xyz [label = "hello\nworld",color="slateblue",fontsize=24,fontname="Palatino-Italic",style=filled,fontcolor="hotpink"];
3 node [style=filled];
4 red [color=red];
5 green [color=green];
6 blue [color=blue,fontcolor=black];
7 cyan [color=cyan];
8 magenta [color=magenta];
9 yellow [color=yellow];
10 orange [color=orange];
11 red -> green;
12 red -> blue;
13 blue -> cyan;
14 blue -> magenta;
15 green -> yellow;
16 green -> orange;
17 }