Sha256: a5abf5fc0af14bf2ed84084b97d004b55581ef058b8a355aaa332585c08f5772

Contents?: true

Size: 1.68 KB

Versions: 14

Compression:

Stored size: 1.68 KB

Contents

$:.unshift( "../lib" )
require "graphviz"

# The goal is to set each planet to its own orbit + set some (earth+moon) to the same orbit

g = GraphViz::new( "Solarsys",
 :type => "digraph",
 :use => "twopi"
)

# the star
sun  = g.add_node(
 'Sun',
 :shape => "circle",
 :penwidth => 2,
 :fontsize => 12,
 :style => :filled,
 :fillcolor => "orange",
 :label => "Sun\n"
)

planets = Hash.new

# The Earth and the Moon - in the same subgraph\rank
g.subgraph { |c|
 c[:rank => 'same']
 planets['Moon']  = c.add_node(
   'Moon',
   :shape => "circle",
   :penwidth => 2,
   :fontsize => 12,
   :style => :filled,
   :fillcolor => "red",
   :label => "Moon\n"
 )
 planets['Earth']  = c.add_node(
   'Earth',
   :shape => "circle",
   :penwidth => 2,
   :fontsize => 12,
   :style => :filled,
   :fillcolor => "blue",
   :label => "Earth\n"
 )
 c.add_edge( planets['Moon'], planets['Earth'],
   :penwidth => 2,
   :labeltooltip => "distance",
   :color => "black"
 )


}

g.add_edge( sun, planets['Earth'],
  :penwidth => 2,
  :labeltooltip => "distance",
  :color => "black"
)

i = 0
# some more planets - each supposed having its own orbit - im trying to do it with rank
['Mercury','Venus','Mars','Jupiter','Saturn','Uranus','Neptune','Pluto'].each { |p|
  i = i + 1
 # set each to its own orbit
 # that doesnt seem to work ...
 g.subgraph { |c|
   c[:rank => "same"]
   planets[p] = c.add_node(
     p,
     :shape => "circle",
     :penwidth => 2,
     :fontsize => 12,
     :fillcolor => "green",
     :style => :filled,
     :label => "#{p}\n"
   )
   c.add_edge( sun, planets[p],
     :penwidth => 2,
     :label => "distance",
     :color => "black"
   )
 }

}

g.output( :png => "#{$0}.png" )
g.output( :none => "#{$0}.dot" )

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
ruby-graphviz-1.0.2 examples/sample37.rb
ruby-graphviz-1.0.1 examples/sample37.rb
ruby-graphviz-1.0.0 examples/sample37.rb
ruby-graphviz-0.9.21 examples/sample37.rb
ruby-graphviz-0.9.20 examples/sample37.rb
ruby-graphviz-0.9.19 examples/sample37.rb
ruby-graphviz-0.9.18 examples/sample37.rb
ruby-graphviz-0.9.17 examples/sample37.rb
ruby-graphviz-0.9.16 examples/sample37.rb
ruby-graphviz-0.9.15 examples/sample37.rb
ruby-graphviz-0.9.14 examples/sample37.rb
ruby-graphviz-0.9.13 examples/sample37.rb
ruby-graphviz-0.9.12 examples/sample37.rb
ruby-graphviz-0.9.11 examples/sample37.rb