Uses of Class
cs2110.collision.BoundingBox

Packages that use BoundingBox
cs2110.collision This package contains classes for the CS 2110 Collision Detector 
 

Uses of BoundingBox in cs2110.collision
 

Methods in cs2110.collision that return BoundingBox
 BoundingBox BoundingBox.displaced(Vector2D d)
          Return the result of displacing this bounding box by d.
static BoundingBox BoundingBox.findBBox(java.util.Iterator<Block> iter)
          Return the bounding box of blocks given by iter.
 BoundingBox Block.getBBox()
          Return the bounding box of this block.
 BoundingBox BlockTree.getBox()
          Return the bounding box of the collection of blocks.
 

Methods in cs2110.collision with parameters of type BoundingBox
 boolean BoundingBox.overlaps(BoundingBox box)
          Return true iff this bounding box overlaps with box.
 

Constructors in cs2110.collision with parameters of type BoundingBox
BoundingBox(BoundingBox b)
          Constructor: an instance is a copy of bounding box b.