Uses of Class
org.jbox2d.collision.AABB

Packages that use AABB
org.jbox2d.collision   
org.jbox2d.collision.broadphase   
org.jbox2d.collision.shapes   
org.jbox2d.dynamics   
org.jbox2d.pooling   
org.jbox2d.pooling.normal   
 

Uses of AABB in org.jbox2d.collision
 

Methods in org.jbox2d.collision with parameters of type AABB
 void AABB.combine(AABB aabb)
          Combines another aabb with this one
 void AABB.combine(AABB aabb1, AABB aab)
          Combine two AABBs into this one.
 boolean AABB.contains(AABB aabb)
          Does this aabb contain the provided AABB.
 void AABB.set(AABB aabb)
          Sets this object from the given object
static boolean AABB.testOverlap(AABB a, AABB b)
           
 

Constructors in org.jbox2d.collision with parameters of type AABB
AABB(AABB copy)
          Copies from the given object
 

Uses of AABB in org.jbox2d.collision.broadphase
 

Fields in org.jbox2d.collision.broadphase declared as AABB
 AABB DynamicTreeNode.aabb
          Enlarged AABB
 

Methods in org.jbox2d.collision.broadphase that return AABB
 AABB DynamicTree.getFatAABB(int proxyId)
           
 AABB BroadPhaseStrategy.getFatAABB(int proxyId)
           
 AABB BroadPhase.getFatAABB(int proxyId)
           
 

Methods in org.jbox2d.collision.broadphase with parameters of type AABB
 int DynamicTree.createProxy(AABB aabb, Object userData)
           
 int BroadPhaseStrategy.createProxy(AABB aabb, Object userData)
          Create a proxy.
 int BroadPhase.createProxy(AABB aabb, Object userData)
          Create a proxy with an initial AABB.
 boolean DynamicTree.moveProxy(int proxyId, AABB aabb, Vec2 displacement)
           
 boolean BroadPhaseStrategy.moveProxy(int proxyId, AABB aabb, Vec2 displacement)
          Move a proxy with a swepted AABB.
 void BroadPhase.moveProxy(int proxyId, AABB aabb, Vec2 displacement)
          Call MoveProxy as many times as you like, then when you are done call UpdatePairs to finalized the proxy pairs (for your time step).
 void DynamicTree.query(TreeCallback callback, AABB aabb)
           
 void BroadPhaseStrategy.query(TreeCallback callback, AABB aabb)
          Query an AABB for overlapping proxies.
 void BroadPhase.query(TreeCallback callback, AABB aabb)
          Query an AABB for overlapping proxies.
 

Uses of AABB in org.jbox2d.collision.shapes
 

Methods in org.jbox2d.collision.shapes with parameters of type AABB
abstract  void Shape.computeAABB(AABB aabb, Transform xf, int childIndex)
          Given a transform, compute the associated axis aligned bounding box for a child shape.
 void PolygonShape.computeAABB(AABB aabb, Transform xf, int childIndex)
           
 void EdgeShape.computeAABB(AABB aabb, Transform xf, int childIndex)
           
 void CircleShape.computeAABB(AABB aabb, Transform transform, int childIndex)
           
 void ChainShape.computeAABB(AABB aabb, Transform xf, int childIndex)
           
 

Uses of AABB in org.jbox2d.dynamics
 

Methods in org.jbox2d.dynamics that return AABB
 AABB Fixture.getAABB(int childIndex)
          Get the fixture's AABB.
 

Methods in org.jbox2d.dynamics with parameters of type AABB
 void World.queryAABB(QueryCallback callback, AABB aabb)
          Query the world for all fixtures that potentially overlap the provided AABB.
 

Uses of AABB in org.jbox2d.pooling
 

Methods in org.jbox2d.pooling that return AABB
 AABB IWorldPool.popAABB()
           
 AABB[] IWorldPool.popAABB(int num)
           
 

Uses of AABB in org.jbox2d.pooling.normal
 

Methods in org.jbox2d.pooling.normal that return AABB
 AABB DefaultWorldPool.popAABB()
           
 AABB[] DefaultWorldPool.popAABB(int argNum)
           
 



Copyright © 2013. All Rights Reserved.