Method: Wallbum::ImagePacking::Rectangle#all_children

Defined in:
lib/wallbum/rectangle.rb

#all_childrenObject



40
41
42
43
44
45
46
# File 'lib/wallbum/rectangle.rb', line 40

def all_children
  if leaf?
    self
  else
    @children.collect(&:all_children).flatten
  end
end