Uses of Class
com.babaroga.test.packing.RectanglePacker

Packages that use RectanglePacker
com.babaroga.test.packing   
 

Uses of RectanglePacker in com.babaroga.test.packing
 

Subclasses of RectanglePacker in com.babaroga.test.packing
 class BspPacker
          A binary space partitioning rectangle packer.
 class SimplePacker
          Very simple rectangle packer that attempts to pack rectangles by placing as many rectangles in a row before moving to the next y-coordinate while preventing overlap with the previous row.
 

Methods in com.babaroga.test.packing with parameters of type RectanglePacker
 java.util.Collection<java.awt.Rectangle> BoundsGenerator.pack(java.util.Collection<java.awt.Rectangle> rectangles, RectanglePacker packer)
          Packs the supplied rectangles using a bounds generator.