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

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cc4b1211e677
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 }