class SayItWithGraphs::Characters::F

Public Instance Methods

define() click to toggle source
# File lib/say_it_with_graphs/characters/f.rb, line 6
def define
  'f'
end
draw() click to toggle source
# File lib/say_it_with_graphs/characters/f.rb, line 10
def draw
  a = rnd_line
  b = rnd_line
  c = rnd_line
  frame do |f|
    f.line[a].at 0
    f.line[a].at 100
    f.line[b].at 50
    f.line[c].at 100
  end
  frame { }
  frame do |f|
    f.line[b].at 50
    f.line[c].at 100
  end
end