Sha256: 25579ee9b77c56eb44d6282456a85dec7dc7136712943c8f0e0b1b793052a6c4
Contents?: true
Size: 852 Bytes
Versions: 1
Compression:
Stored size: 852 Bytes
Contents
#!/usr/bin/ruby $:.unshift( "../lib" ); require "graphviz" g = nil if ARGV[0] g = GraphViz::new( "G", "output" => "png", "path" => ARGV[0] ) else g = GraphViz::new( "G", "output" => "png" ) end g.node["shape"] = "ellipse" g.node["sides"] = "4" g.node["peripheries"] = "" g.node["color"] = "black" g.node["style"] = "" g.node["skew"] = "0.0" g.node["distortion"] = "0.0" a = g.add_node( "a", "shape" => "polygon", "sides" => "5", "peripheries" => "3", "color" => "lightblue", "style" => "filled" ) b = g.add_node( "b" ) c = g.add_node( "c", "shape" => "polygon", "sides" => "4", "skew" => ".4", "label" => "hello world" ) d = g.add_node( "d", "shape" => "invtriangle" ) e = g.add_node( "e", "shape" => "polygon", "sides" => "4", "distortion" => ".7" ) g.add_edge( a, b ) g.add_edge( b, c ) g.add_edge( b, d ) g.output( :file => "#{$0}.png" )
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-graphviz-0.9.0 | examples/sample03.rb |