Skip to content

Instantly share code, notes, and snippets.

@killerswan
Created August 9, 2012 23:24
Show Gist options
  • Save killerswan/3308977 to your computer and use it in GitHub Desktop.
Save killerswan/3308977 to your computer and use it in GitHub Desktop.
a graphvis `dot` script example
// 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