class SayItWithGraphs::Characters::W

Public Instance Methods

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