These line in a file:
digraph G { a -> b [label="hello", style=dashed]; a -> c [label="world"]; c -> d; b -> c; d -> a; b [shape=Mdiamond, label="this is b"]; c [shape=polygon, sides=5, peripheries=3]; d [style=bold]; }produced this:
See the Graphviz Documentation for more details on DOT. DOTTYDOTTY is a customizable directed graph editor. It is a X Windows based GUI that is very easy to use. With just a few clicks of the mouse, you can build a graph.DOTTY is built upon DOT and LEFTY (a customizable picture editor included in the DOT/DOTTY distribution). See the DOTTY Documentation for more details. |