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