Method: MathViz::Term#style

Defined in:
lib/mathviz.rb

#styleObject

Graphviz node line style



332
333
334
335
336
337
338
339
340
# File 'lib/mathviz.rb', line 332

def style
  if anonymous?
    :dotted
  elsif constant?
    :solid
  else
    :dashed
  end
end