-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
small update to test graph and word fix when pydot is not present
Signed-off-by: Christian López Barrón <[email protected]>
- Loading branch information
Showing
4 changed files
with
149 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
digraph { | ||
rankdir=LR; | ||
edge [color=crimson]; | ||
1 [label="{<0>x:y:z|<1>z}", style="rounded,filled", shape=record]; | ||
2 [label="{<0>a|<1>b}", style="rounded,filled", shape=record]; | ||
3 [label="{<0>c|<1>d}", style="rounded,filled", shape=record]; | ||
4 [label="{<0>k}", style=invis]; | ||
ancestor [active_plugs="{'surface', 'cycle_out', 'cycle_in', 'roughness'}", shape=none, connections="{'surface': [('successor', 'surface')], 'cycle_out': [('ancestor', 'cycle_in')]}", label=<<table border="1" cellspacing="2" style="ROUNDED" bgcolor="#F0FFFF" color="#4682B4"><tr><td port="" border="0" bgcolor="white" style="ROUNDED"><font color="#4682B4"><b>ancestor</b></font></td></tr><tr><td port="cycle_in" border="0" bgcolor="#F0FFFF" style="ROUNDED"><font color="#242828">cycle_in</font></td></tr><tr><td port="roughness" border="0" bgcolor="#F0FFFF" style="ROUNDED"><font color="#242828">roughness</font></td></tr><tr><td port="cycle_out" border="0" bgcolor="#F08080" style="ROUNDED"><font color="#242828">cycle_out</font></td></tr><tr><td port="surface" border="0" bgcolor="#F08080" style="ROUNDED"><font color="#242828">surface</font></td></tr></table>>]; | ||
successor [active_plugs="{'surface'}", shape=none, connections="{}", label=<<table border="1" cellspacing="2" style="ROUNDED" bgcolor="#F0FFFF" color="#4682B4"><tr><td port="" border="0" bgcolor="white" style="ROUNDED"><font color="#4682B4"><b>successor</b></font></td></tr><tr><td port="surface" border="0" bgcolor="#F0FFFF" style="ROUNDED"><font color="#242828">surface</font></td></tr></table>>]; | ||
1 [label="{<one>x:y:z|<two>z}", style=rounded, shape=record]; | ||
2 [label="{<three>a|<four>b}", style=rounded, shape=record]; | ||
3 [label="{<five>c|<six>d}", style=rounded, shape=record]; | ||
parent [shape=box, fillcolor="#afd7ff", color="#1E90FF", style="filled,rounded"]; | ||
child1 [shape=box, fillcolor="#afd7ff", color="#1E90FF", style="filled,rounded"]; | ||
child2 [shape=box, fillcolor="#afd7ff", color="#1E90FF", style=invis]; | ||
ancestor [shape=none, label=<<table border="1" cellspacing="2" style="ROUNDED" bgcolor="#F0FFFF" color="#4682B4"><tr><td port="" border="0" bgcolor="white" style="ROUNDED"><font color="#4682B4"><b>ancestor</b></font></td></tr><tr><td port="cycle_in" border="0" bgcolor="#F0FFFF" style="ROUNDED"><font color="#242828">cycle_in</font></td></tr><tr><td port="roughness" border="0" bgcolor="#F0FFFF" style="ROUNDED"><font color="#242828">roughness</font></td></tr><tr><td port="cycle_out" border="0" bgcolor="#F08080" style="ROUNDED"><font color="#242828">cycle_out</font></td></tr><tr><td port="surface" border="0" bgcolor="#F08080" style="ROUNDED"><font color="#242828">surface</font></td></tr></table>>]; | ||
successor [shape=none, label=<<table border="1" cellspacing="2" style="ROUNDED" bgcolor="#F0FFFF" color="#4682B4"><tr><td port="" border="0" bgcolor="white" style="ROUNDED"><font color="#4682B4"><b>successor</b></font></td></tr><tr><td port="surface" border="0" bgcolor="#F0FFFF" style="ROUNDED"><font color="#242828">surface</font></td></tr></table>>]; | ||
1 -> 1 [key=0, color="sienna:crimson:orange"]; | ||
1 -> 2 [key=0, color=crimson]; | ||
2 -> 1 [key=0, color=green]; | ||
2 -> 4 [key=0, color=yellow, label="edge_label"]; | ||
3 -> 2 [key=0, color=blue, tailport=0]; | ||
ancestor -> ancestor [key=0, tailport="cycle_in", headport="cycle_out", tooltip="ancestor.cycle_in -> ancestor.cycle_out"]; | ||
successor -> ancestor [key=0, tailport=surface, headport=surface, tooltip="successor.surface -> ancestor.surface"]; | ||
2 -> 1 [key=0, color=seagreen]; | ||
3 -> 2 [key=0, color=steelblue, tailport=five]; | ||
3 -> 1 [key=0, color=hotpink, tailport=five]; | ||
parent -> child1 [key=0]; | ||
parent -> child2 [key=0, label=invis]; | ||
ancestor -> ancestor [key=0, tailport="cycle_out", headport="cycle_in", tooltip="ancestor.cycle_out -> ancestor.cycle_in"]; | ||
ancestor -> successor [key=0, tailport=surface, headport=surface, tooltip="ancestor.surface -> successor.surface"]; | ||
} |
Oops, something went wrong.