class SayItWithGraphs::Frame

Public Class Methods

new() click to toggle source
# File lib/say_it_with_graphs/frame.rb, line 3
def initialize
  @lines = []
end

Public Instance Methods

complete() click to toggle source
# File lib/say_it_with_graphs/frame.rb, line 14
def complete
  @lines.freeze
end
line() click to toggle source
# File lib/say_it_with_graphs/frame.rb, line 7
def line
  line = Line.new 0, 0
  @lines << line
  line
end
Also aliased as: lines
lines()
Alias for: line