Created
August 9, 2012 23:24
-
-
Save killerswan/3308977 to your computer and use it in GitHub Desktop.
a graphvis `dot` script example
This file contains hidden or 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
| // Kevin Cantu | |
| // a graphvis `dot` script | |
| strict digraph DEMO { | |
| //graph[size="7.0,10.25"] | |
| node[nodesep=0.75, ranksep=0.75, colsep=0.75] | |
| //node[shape=Mrecord] | |
| node[shape=rect] | |
| ordering=in | |
| node [fontname="sans-serif"]; | |
| "xx" [group=LA] | |
| "zz" [group=LA] | |
| "yy" [group=stop] | |
| "ww" [group=stop] | |
| "vv" [group=stop] | |
| "uu" [group=stop] | |
| "xx" -> "yy" | |
| "zz" -> "yy" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment