Method: Fractal::Map#truncate

Defined in:
lib/fractal/map.rb

#truncate(width, height) ⇒ Object



28
29
30
31
32
# File 'lib/fractal/map.rb', line 28

def truncate(width, height)
  pop while length > height
  collect! { |line| line[0...width] }
  @width, @height = width, height
end