Sha256: 7f3b51b4979cc8c17ed2c47f924c40f4ec2953ece00b7c2b511c0dbf3f00cc2e
Contents?: true
Size: 604 Bytes
Versions: 24
Compression:
Stored size: 604 Bytes
Contents
#!/usr/bin/ruby $:.unshift( "../lib" ); require "graphviz" g = nil if ARGV[0] g = GraphViz::new( "structs", "path" => ARGV[0] ) else g = GraphViz::new( "structs" ) end g.node["shape"] = "record" struct1 = g.add_node( "struct1", "shape" => "record", "label" => "<f0> left|<f1> mid\ dle|<f2> right" ) struct2 = g.add_node( "struct2", "shape" => "record", "label" => "<f0> one|<f1> two" ) struct3 = g.add_node( "struct3", "shape" => "record", "label" => 'hello\nworld |{ b |{c|<here> d|e}| f}| g | h' ) g.add_edge( struct1, struct2 ) g.add_edge( struct1, struct3 ) g.output( :png => "#{$0}.png" )
Version data entries
24 entries across 24 versions & 1 rubygems