Uses of Class
cs2110.collision.Block

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

Uses of Block in cs2110.collision
 

Methods in cs2110.collision that return types with arguments of type Block
 java.util.ArrayList<Block> ImageBlocker.getBlocks()
          Return the nonempty Blocks of the image.
 java.util.ArrayList<java.util.HashSet<Block>> ImageBlocker.getLargeConnectedComponents(double sizeCutoff)
          Return a list of the largest connected components.
 

Methods in cs2110.collision with parameters of type Block
static boolean Block.overlaps(Block b, Vector2D u, Block c, Vector2D v)
          Return true iff block b displaced by u overlaps block c displaced by v
 

Method parameters in cs2110.collision with type arguments of type Block
static BoundingBox BoundingBox.findBBox(java.util.Iterator<Block> iter)
          Return the bounding box of blocks given by iter.
 

Constructor parameters in cs2110.collision with type arguments of type Block
BlockTree(java.util.ArrayList<Block> blocks)
          Constructor: a binary tree containing blocks.
Shape(java.util.HashSet<Block> blocks)
          Constructor: An instance containing blocks.