Uses of Class
com.cliffblaster.game.physics.AABB

Packages that use AABB
com.cliffblaster.game.api.abstraction   
com.cliffblaster.game.level.tile   
com.cliffblaster.game.physics   
 

Uses of AABB in com.cliffblaster.game.api.abstraction
 

Methods in com.cliffblaster.game.api.abstraction that return types with arguments of type AABB
 java.util.ArrayList<AABB> Level.getSurroundingAABBs(AABB aabb, int grow)
           
 java.util.Collection<AABB> Level.getSurroundingRenderAABBs(AABB aabb, int grow)
           
 

Methods in com.cliffblaster.game.api.abstraction with parameters of type AABB
 java.util.ArrayList<AABB> Level.getSurroundingAABBs(AABB aabb, int grow)
           
 java.util.Collection<AABB> Level.getSurroundingRenderAABBs(AABB aabb, int grow)
           
 boolean Level.isFree(AABB aabb)
           
 

Uses of AABB in com.cliffblaster.game.level.tile
 

Methods in com.cliffblaster.game.level.tile that return AABB
 AABB Tile.getTileAABB(com.cliffblaster.game.level.Level level, int x, int y, int z)
          Gets the AABB of the tile
 AABB SlabTile.getTileAABB(com.cliffblaster.game.level.Level level, int x, int y, int z)
          Gets the AABB of the tile
 AABB PlantTile.getTileAABB(com.cliffblaster.game.level.Level level, int x, int y, int z)
           
 AABB LiquidTile.getTileAABB(com.cliffblaster.game.level.Level level, int x, int y, int z)
          Gets the AABB of the tile
 AABB Tile.getTileRenderAABB(com.cliffblaster.game.level.Level level, int x, int y, int z)
          Gets the AABB of the tile
 AABB SlabTile.getTileRenderAABB(com.cliffblaster.game.level.Level level, int x, int y, int z)
          Gets the AABB of the tile
 

Uses of AABB in com.cliffblaster.game.physics
 

Methods in com.cliffblaster.game.physics that return AABB
 AABB Ray.getClosestIntersectingAABB(java.util.Collection<AABB> aabbs)
           
 AABB Ray.getClosestIntersectingAABB(java.util.Collection<AABB> aabbs, boolean ignoreUnpickable)
           
 AABB AABB.grow(float size)
           
 AABB AABB.grow(float sizex, float sizey, float sizez)
           
 AABB AABB.moveRet(float x, float y, float z)
           
 

Methods in com.cliffblaster.game.physics with parameters of type AABB
 boolean AABB.collides(AABB otherBox)
           
 

Method parameters in com.cliffblaster.game.physics with type arguments of type AABB
 AABB Ray.getClosestIntersectingAABB(java.util.Collection<AABB> aabbs)
           
 AABB Ray.getClosestIntersectingAABB(java.util.Collection<AABB> aabbs, boolean ignoreUnpickable)