annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/clust.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
rev   line source
Daniel@0 1 digraph G {
Daniel@0 2 subgraph cluster_0 {
Daniel@0 3 label = "hello world";
Daniel@0 4 a -> b;
Daniel@0 5 a -> c;
Daniel@0 6 color = hotpink;
Daniel@0 7 }
Daniel@0 8
Daniel@0 9 subgraph cluster_1 {
Daniel@0 10 label = "MSDOT";
Daniel@0 11 style= "dashed";
Daniel@0 12 color=purple;
Daniel@0 13 x -> y;
Daniel@0 14 x -> z;
Daniel@0 15 y -> z;
Daniel@0 16 y -> q;
Daniel@0 17 }
Daniel@0 18
Daniel@0 19 top -> a;
Daniel@0 20 top -> y;
Daniel@0 21 y -> b;
Daniel@0 22 }