Top Level Namespace

Defined Under Namespace

Modules: Draw Classes: Array, Gviz, Numeric, Object, String

Instance Method Summary collapse

Instance Method Details

#Graph(name = :G, type = :digraph, &blk) ⇒ Object

Graph fuction is a shortcut method of ‘Gviz#graph`.



10
11
12
# File 'lib/gviz.rb', line 10

def Graph(name=:G, type=:digraph, &blk)
  Gviz.new(name, type).graph(&blk)
end