Uses of Class
com.jme3.bounding.BoundingBox

Packages that use BoundingBox
com.jme3.bounding   
com.jme3.collision.bih   
com.jme3.scene.debug   
com.jme3.scene.plugins.blender.textures   
com.jme3.shadow   
com.jme3.terrain.geomipmap   
jme3tools.optimize   
 

Uses of BoundingBox in com.jme3.bounding
 

Methods in com.jme3.bounding with parameters of type BoundingBox
static boolean Intersection.intersect(BoundingBox bbox, Vector3f v1, Vector3f v2, Vector3f v3)
           
 boolean BoundingBox.intersectsBoundingBox(BoundingBox bb)
          determines if this bounding box intersects a given bounding box.
 boolean BoundingSphere.intersectsBoundingBox(BoundingBox bb)
           
abstract  boolean BoundingVolume.intersectsBoundingBox(BoundingBox bb)
          determines if this bounding volume and a given bounding box are intersecting.
 

Constructors in com.jme3.bounding with parameters of type BoundingBox
BoundingBox(BoundingBox source)
           
 

Uses of BoundingBox in com.jme3.collision.bih
 

Methods in com.jme3.collision.bih with parameters of type BoundingBox
 int BIHNode.intersectWhere(Collidable col, BoundingBox box, Matrix4f worldMatrix, BIHTree tree, CollisionResults results)
           
 

Uses of BoundingBox in com.jme3.scene.debug
 

Methods in com.jme3.scene.debug with parameters of type BoundingBox
 void WireBox.fromBoundingBox(BoundingBox bbox)
           
 

Uses of BoundingBox in com.jme3.scene.plugins.blender.textures
 

Methods in com.jme3.scene.plugins.blender.textures that return BoundingBox
static BoundingBox UVCoordinatesGenerator.getBoundingBox(java.util.List<Geometry> geometries)
          This method returns the bounding box of the given geometries.
 

Uses of BoundingBox in com.jme3.shadow
 

Methods in com.jme3.shadow that return BoundingBox
static BoundingBox ShadowUtil.computeBoundForPoints(Vector3f[] pts, Matrix4f mat)
          Compute bounds from an array of points
static BoundingBox ShadowUtil.computeBoundForPoints(Vector3f[] pts, Transform transform)
          Compute bounds from an array of points
static BoundingBox ShadowUtil.computeUnionBound(GeometryList list, Matrix4f mat)
          Compute bounds of a geomList
static BoundingBox ShadowUtil.computeUnionBound(GeometryList list, Transform transform)
          Compute bounds of a geomList
static BoundingBox ShadowUtil.computeUnionBound(java.util.List<BoundingVolume> bv)
          Computes the bounds of multiple bounding volumes
 

Uses of BoundingBox in com.jme3.terrain.geomipmap
 

Methods in com.jme3.terrain.geomipmap with parameters of type BoundingBox
protected  void TerrainQuad.fixNormalEdges(BoundingBox affectedArea)
          fix the normals on the edge of the terrain patches.
protected  void TerrainQuad.fixNormals(BoundingBox affectedArea)
          Find what terrain patches need normal recalculations and update their normals;
 

Uses of BoundingBox in jme3tools.optimize
 

Methods in jme3tools.optimize that return BoundingBox
 BoundingBox Octree.getBound()
           
 

Methods in jme3tools.optimize with parameters of type BoundingBox
 void FastOctnode.generateRenderSet(Geometry[] globalGeomList, java.util.Set<Geometry> renderSet, Camera cam, BoundingBox parentBox, boolean isRoot)
           
 

Constructors in jme3tools.optimize with parameters of type BoundingBox
Octnode(BoundingBox bbox, java.util.ArrayList<OCTTriangle> tris)