Uses of Class
org.openmali.spatial.bodies.Box

Packages that use Box
org.openmali.spatial.bodies   
org.openmali.spatial.bounds   
org.openmali.spatial.octree   
org.openmali.spatial.quadtree   
 

Uses of Box in org.openmali.spatial.bodies
 

Methods in org.openmali.spatial.bodies with parameters of type Box
static boolean IntersectionFactory.boxIntersectsBox(Box box1, Box box2)
          Tests two Boxes for intersection.
static Classifier.Classification Classifier.classifyBoxBounds(Box box1, Bounds bounds)
          Classifies a Box against a Bounds object.
static Classifier.Classification Classifier.classifyBoxBox(Box box1, Box box2)
          Classifies a Box against a Box.
static Classifier.Classification Classifier.classifyBoxPoint(Box box, float px, float py, float pz)
          Classifies a Point against a Box.
static Classifier.Classification Classifier.classifyBoxPoint(Box box, Point3f point)
          Classifies a Point against a Box.
static Classifier.Classification Classifier.classifyBoxSphere(Box box, Sphere sphere)
          Classifies a Sphere against a Box.
static Classifier.Classification Classifier.classifyFrustumBox(Frustum frustum, Box box)
          Classifies a Box against a Frustum.
static Classifier.PlaneClassification Classifier.classifyPlaneBox(Plane plane, Box box)
           
static Classifier.Classification Classifier.classifySphereBox(Sphere sphere, Box box)
          Classifies a Box against a Sphere.
 Classifier.Classification Frustum.quickClassify(Box box)
          Quick check to see if an orthogonal bounding box is inside the frustum
static boolean IntersectionFactory.sphereIntersectsBox(float sphereX, float sphereY, float sphereZ, float sphereR, Box box)
          Tests a Sphere and a Box for intersection.
static boolean IntersectionFactory.sphereIntersectsBox(Sphere sphere, Box box)
          Tests a Sphere and a Box for intersection.
 

Uses of Box in org.openmali.spatial.bounds
 

Subclasses of Box in org.openmali.spatial.bounds
 class BoundingBox
          Axis aligned bounding box volumes
 

Methods in org.openmali.spatial.bounds with parameters of type Box
 void BoundingBox.set(Box boundsObject)
          Sets the the value of this Bounds object to enclode the specified bounding object
 void BoundingPolytope.set(Box boundsObject)
          Sets the the value of this Bounds object to enclode the specified bounding object
 void BoundingSphere.set(Box boundsObject)
          Sets the the value of this Bounds object to enclode the specified bounding object
 void Bounds.set(Box boundsObject)
          Sets the the value of this Bounds object to enclode the specified bounding object
 

Uses of Box in org.openmali.spatial.octree
 

Subclasses of Box in org.openmali.spatial.octree
 class OcCell<T extends SpatialNode>
          This is a non-standard implementation of an OcTree's cell.
 

Uses of Box in org.openmali.spatial.quadtree
 

Subclasses of Box in org.openmali.spatial.quadtree
 class QuadCell<T extends SpatialNode>
          This is a non-standard implementation of an QuadTree's cell.