class SayItWithGraphs::Characters::E
Public Instance Methods
define()
click to toggle source
# File lib/say_it_with_graphs/characters/e.rb, line 6 def define 'e' end
draw()
click to toggle source
# File lib/say_it_with_graphs/characters/e.rb, line 10 def draw a = rnd_line b = rnd_line c = rnd_line frame do |f| f.line[c].at 0 f.line[a].at 0 f.line[a].at 100 f.line[b].at 0 f.line[b].at 50 end frame do |f| f.line[c].at 0 f.line[a].at 100 f.line[b].at 50 end frame do |f| f.line[c].at 0 f.line[a].at 100 f.line[b].at 50 end end