GraphViz

WebHome | UnixGeekTools | Geekfarm | About This Site

GraphViz provides a collection of tools for manipulating graph structures and generating graph layouts.

Os X

Gui

    digraph G {
      "a" -> "b" [color="blue"];
      "b" -> "c" [color="red"];
      "c" -> "d" [color="red"];
      "d" -> "a" [color="red"];
    }

    dot -Tgif basic.dot > basic.dot.gif




Updated Sun Jul 23, 2006 12:11 PM