annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/table.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 structs {
Daniel@0 2 node [shape=plaintext];
Daniel@0 3
Daniel@0 4 struct1 [label=<<TABLE CELLPADDING="10" BORDER="0">
Daniel@0 5 <TR>
Daniel@0 6 <TD HEIGHT="30" WIDTH="90">a</TD>
Daniel@0 7 <TD>b</TD>
Daniel@0 8 <TD>c</TD>
Daniel@0 9 </TR>
Daniel@0 10 </TABLE>>];
Daniel@0 11
Daniel@0 12 struct2 [label=<<TABLE>
Daniel@0 13 <TR>
Daniel@0 14 <TD COLSPAN="3">elefantel</TD>
Daniel@0 15 <TD ROWSPAN="2" VALIGN="bottom" ALIGN="right">two</TD>
Daniel@0 16 </TR><TR>
Daniel@0 17 <TD COLSPAN="2" ROWSPAN="2"><TABLE BGCOLOR="grey">
Daniel@0 18 <TR>
Daniel@0 19 <TD>buca</TD>
Daniel@0 20 </TR><TR>
Daniel@0 21 <TD BGCOLOR="yellow">c</TD>
Daniel@0 22 </TR><TR>
Daniel@0 23 <TD>f</TD>
Daniel@0 24 </TR>
Daniel@0 25 </TABLE></TD>
Daniel@0 26 <TD>patratos</TD>
Daniel@0 27 </TR><TR>
Daniel@0 28 <TD COLSPAN="2" ALIGN="right">4</TD>
Daniel@0 29 </TR>
Daniel@0 30 </TABLE>
Daniel@0 31 >];
Daniel@0 32
Daniel@0 33 struct3 [label=<<TABLE CELLPADDING="5">
Daniel@0 34 <TR>
Daniel@0 35 <TD ROWSPAN="3">Hello</TD>
Daniel@0 36 <TD ROWSPAN="2" COLSPAN="3"><TABLE BORDER="4">
Daniel@0 37 <TR>
Daniel@0 38 <TD COLSPAN="3">b</TD>
Daniel@0 39 </TR><TR>
Daniel@0 40 <TD>a</TD>
Daniel@0 41 <TD>dino</TD>
Daniel@0 42 <TD>y</TD>
Daniel@0 43 </TR><TR>
Daniel@0 44 <TD COLSPAN="3">rhino</TD>
Daniel@0 45 </TR>
Daniel@0 46 </TABLE></TD>
Daniel@0 47 </TR><TR>
Daniel@0 48 <TD COLSPAN="2">climb</TD>
Daniel@0 49 <TD ROWSPAN="2">Up</TD>
Daniel@0 50 </TR><TR>
Daniel@0 51 <TD COLSPAN="3">low</TD>
Daniel@0 52 </TR>
Daniel@0 53 </TABLE>>];
Daniel@0 54
Daniel@0 55 struct1 -> struct3;
Daniel@0 56 struct1 -> struct2;
Daniel@0 57 }