Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2006-09-07 22:26:51
Size: 1601
Editor: 127
Comment:
Revision 3 as of 2006-09-07 22:29:15
Size: 1643
Editor: 127
Comment:
Deletions are marked like this. Additions are marked like this.
Line 38: Line 38:
graph G { digraph G {
Line 40: Line 40:
    yong27 -> cyppi -> neosphere -> yong27
    neosphere -> asdf -> cyppi
    yong27 -> cyppi
    cyppi
-> neosphere
   
neosphere -> yong27
    neosphere -> asdf
    asdf
-> cyppi
Line 54: Line 57:
graph G { digraph G {

MoinMoin GraphViz parser from ParserMarket/dot.py

GraphViz 에서 [Graph]를 그리는 방법은 세가지(dot, neato, twopi)가 있다. 아래 소스를 각각의 방법으로 그려보면,

digraph G {
    node [style=filled, fillcolor=white]
    yong27 -> cyppi -> neosphere ->  yong27
    neosphere -> asdf -> cyppi

    // a comment /

    yong27 [URL='yong27']   // link to an external URL
    cyppi [URL='cyppi']          
    neosphere [URL='neosphere']
    yong27 [fillcolor=blue]              
}

dot

neato

twopi

GraphVizParser (last edited 2011-08-17 00:16:04 by 222)

web biohackers.net