Uses of Class
org.jbox2d.collision.AABB

Packages that use AABB
org.jbox2d.collision This package contains the broad and narrow phase collision algorithms. 
org.jbox2d.dynamics This package handles non-collision aspects of simulation. 
org.jbox2d.testbed The JBox2d 2.0 testbed, implemented using Processing
org.jbox2d.util.blob   
 

Uses of AABB in org.jbox2d.collision
 

Fields in org.jbox2d.collision declared as AABB
 AABB BroadPhase.m_worldAABB
           
 

Methods in org.jbox2d.collision with parameters of type AABB
abstract  void Shape.computeAABB(AABB aabb, XForm xf)
          Given a transform, compute the associated axis aligned bounding box for this shape.
 void PolygonShape.computeAABB(AABB aabb, XForm xf)
           
 void CircleShape.computeAABB(AABB aabb, XForm transform)
           
abstract  void Shape.computeSweptAABB(AABB aabb, XForm xf1, XForm xf2)
          Given two transforms, compute the associated swept axis aligned bounding box for this shape.
 void PolygonShape.computeSweptAABB(AABB aabb, XForm transform1, XForm transform2)
           
 void CircleShape.computeSweptAABB(AABB aabb, XForm transform1, XForm transform2)
           
 boolean BroadPhase.inRange(AABB aabb)
           
 java.lang.Object[] BroadPhase.query(AABB aabb, int maxCount)
          Query an AABB for overlapping proxies, returns the user data and the count, up to the supplied maximum count.
 boolean AABB.testOverlap(AABB box)
          Check if AABBs overlap.
 

Constructors in org.jbox2d.collision with parameters of type AABB
AABB(AABB copy)
           
BroadPhase(AABB worldAABB, PairCallback callback)
           
 

Uses of AABB in org.jbox2d.dynamics
 

Methods in org.jbox2d.dynamics that return AABB
 AABB World.getWorldAABB()
          Get the world bounding box.
 

Methods in org.jbox2d.dynamics with parameters of type AABB
 boolean World.inRange(AABB aabb)
          Return true if the bounding box is within range of the world AABB.
 Shape[] World.query(AABB aabb, int maxCount)
          Query the world for all shapes that potentially overlap the provided AABB up to max count.
 

Constructors in org.jbox2d.dynamics with parameters of type AABB
World(AABB worldAABB, Vec2 gravity, boolean doSleep)
          Construct a world object.
 

Uses of AABB in org.jbox2d.testbed
 

Fields in org.jbox2d.testbed declared as AABB
protected  AABB AbstractExample.m_worldAABB
          The bounding box for the world.
 

Uses of AABB in org.jbox2d.util.blob
 

Methods in org.jbox2d.util.blob that return AABB
 AABB DonutBlobContainer.getAABB()
           
 AABB CircularBlobContainer.getAABB()
           
 AABB BlobContainer.getAABB()
          Get the world AABB of the container.