libgdx API

Uses of Class
com.badlogic.gdx.math.collision.BoundingBox

Packages that use BoundingBox
com.badlogic.gdx.graphics   
com.badlogic.gdx.graphics.g3d.model   
com.badlogic.gdx.graphics.g3d.model.keyframe   
com.badlogic.gdx.graphics.g3d.model.skeleton   
com.badlogic.gdx.graphics.g3d.model.still   
com.badlogic.gdx.math   
com.badlogic.gdx.math.collision   
 

Uses of BoundingBox in com.badlogic.gdx.graphics
 

Methods in com.badlogic.gdx.graphics that return BoundingBox
 BoundingBox Mesh.calculateBoundingBox()
          Calculates the BoundingBox of the vertices contained in this mesh.
 

Methods in com.badlogic.gdx.graphics with parameters of type BoundingBox
 void Mesh.calculateBoundingBox(BoundingBox bbox)
          Calculates the BoundingBox of the vertices contained in this mesh.
 

Uses of BoundingBox in com.badlogic.gdx.graphics.g3d.model
 

Methods in com.badlogic.gdx.graphics.g3d.model with parameters of type BoundingBox
 void Model.getBoundingBox(BoundingBox bbox)
          Generates the bounding box for the Model.

For every finite 3D object there exists a box that can enclose the object.
abstract  void SubMesh.getBoundingBox(BoundingBox bbox)
          Obtain the BoundingBox of this SubMesh.
 

Uses of BoundingBox in com.badlogic.gdx.graphics.g3d.model.keyframe
 

Methods in com.badlogic.gdx.graphics.g3d.model.keyframe with parameters of type BoundingBox
 void KeyframedModel.getBoundingBox(BoundingBox bbox)
           
 void KeyframedSubMesh.getBoundingBox(BoundingBox bbox)
           
 

Uses of BoundingBox in com.badlogic.gdx.graphics.g3d.model.skeleton
 

Methods in com.badlogic.gdx.graphics.g3d.model.skeleton with parameters of type BoundingBox
 void SkeletonModel.getBoundingBox(BoundingBox bbox)
           
 void SkeletonSubMesh.getBoundingBox(BoundingBox bbox)
           
 

Uses of BoundingBox in com.badlogic.gdx.graphics.g3d.model.still
 

Methods in com.badlogic.gdx.graphics.g3d.model.still with parameters of type BoundingBox
 void StillModel.getBoundingBox(BoundingBox bbox)
           
 void StillSubMesh.getBoundingBox(BoundingBox bbox)
           
 

Uses of BoundingBox in com.badlogic.gdx.math
 

Methods in com.badlogic.gdx.math with parameters of type BoundingBox
 boolean Frustum.boundsInFrustum(BoundingBox bounds)
          Returns whether the given BoundingBox is in the frustum.
static boolean Intersector.intersectRayBoundsFast(Ray ray, BoundingBox box)
          Quick check whether the given Ray and BoundingBox intersect.
 

Uses of BoundingBox in com.badlogic.gdx.math.collision
 

Methods in com.badlogic.gdx.math.collision that return BoundingBox
 BoundingBox BoundingBox.clr()
          Sets the minimum and maximum vector to zeros
 BoundingBox BoundingBox.ext(BoundingBox a_bounds)
          Extends this bounding box by the given bounding box.
 BoundingBox BoundingBox.ext(float x, float y, float z)
          Extends the bounding box by the given vector.
 BoundingBox BoundingBox.ext(Vector3 point)
          Extends the bounding box to incorporate the given Vector3.
 BoundingBox BoundingBox.inf()
          Sets the minimum and maximum vector to positive and negative infinity.
 BoundingBox BoundingBox.mul(Matrix4 matrix)
          Multiplies the bounding box by the given matrix.
 BoundingBox BoundingBox.set(BoundingBox bounds)
          Sets the given bounding box.
 BoundingBox BoundingBox.set(java.util.List<Vector3> points)
          Sets the bounding box minimum and maximum vector from the given points.
 BoundingBox BoundingBox.set(Vector3[] points)
          Sets the bounding box minimum and maximum vector from the given points.
 BoundingBox BoundingBox.set(Vector3 minimum, Vector3 maximum)
          Sets the given minimum and maximum vector.
 

Methods in com.badlogic.gdx.math.collision with parameters of type BoundingBox
 boolean BoundingBox.contains(BoundingBox bounds)
          Returns whether the given bounding box is contained in this bounding box.
 BoundingBox BoundingBox.ext(BoundingBox a_bounds)
          Extends this bounding box by the given bounding box.
 BoundingBox BoundingBox.set(BoundingBox bounds)
          Sets the given bounding box.
 

Constructors in com.badlogic.gdx.math.collision with parameters of type BoundingBox
BoundingBox(BoundingBox bounds)
          Constructs a new bounding box from the given bounding box.
 


libgdx API

Copyright 2010 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com)