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

Packages that use Plane
org.openmali.spatial.bodies   
 

Uses of Plane in org.openmali.spatial.bodies
 

Fields in org.openmali.spatial.bodies declared as Plane
protected  Plane[] ConvexHull.slabs
           
 

Methods in org.openmali.spatial.bodies that return Plane
static Plane Plane.fromPool()
           
 Plane Frustum.getPlaneBottom()
           
 Plane Frustum.getPlaneBottom(Plane plane)
           
 Plane Frustum.getPlaneFar()
           
 Plane Frustum.getPlaneFar(Plane plane)
           
 Plane Frustum.getPlaneLeft()
           
 Plane Frustum.getPlaneLeft(Plane plane)
           
 Plane Frustum.getPlaneNear()
           
 Plane Frustum.getPlaneNear(Plane plane)
           
 Plane Frustum.getPlaneRight()
           
 Plane Frustum.getPlaneRight(Plane plane)
           
 Plane Frustum.getPlaneTop()
           
 Plane Frustum.getPlaneTop(Plane plane)
           
 Plane Plane.normalize()
          Normalizes this plane (i.e. the vector (a,b,c) becomes unit length) This also scales d to compensate.
 

Methods in org.openmali.spatial.bodies with parameters of type Plane
static Classifier.PlaneClassification Classifier.classifyPlaneBox(Plane plane, Box box)
           
static Classifier.PlaneClassification Classifier.classifyPlaneBox(Plane plane, float boxLowerX, float boxLowerY, float boxLowerZ, float boxUpperX, float boxUpperY, float boxUpperZ)
           
static Classifier.PlaneClassification Classifier.classifyPlaneBox(Plane plane, Tuple3f boxLower, Tuple3f boxUpper)
           
static Classifier.PlaneClassification Classifier.classifyPlanePoint(Plane plane, float px, float py, float pz)
          Classifies a point with respect to the plane.
static Classifier.PlaneClassification Classifier.classifyPlanePoint(Plane plane, Tuple3f point)
          Classifies a point with respect to the plane.
static Classifier.PlaneClassification Classifier.classifyPlanePoints(Plane plane, Tuple3f[] points)
          Classifies a collection of points with respect to the plane.
static Classifier.PlaneClassification Classifier.classifySpherePlane(Sphere sphere, Plane plane)
          Classify this sphere with respect to a plane
 Plane Frustum.getPlaneBottom(Plane plane)
           
 Plane Frustum.getPlaneFar(Plane plane)
           
 Plane Frustum.getPlaneLeft(Plane plane)
           
 Plane Frustum.getPlaneNear(Plane plane)
           
 Plane Frustum.getPlaneRight(Plane plane)
           
 Plane Frustum.getPlaneTop(Plane plane)
           
 boolean Plane.intersects(Plane rkPlane1)
           
 boolean Plane.intersects(Plane rkPlane1, Line rkLine)
          Computes the intersection line between this plane and incoming plane rkPlane1.
 boolean Frustum.intersects(Plane p, Vector3f[] quad)
          Intersect the frustum with a plane.
 void Plane.set(Plane plane)
          Insert the method's description here.
 void Frustum.setPlaneBottom(Plane plane)
           
 void Frustum.setPlaneFar(Plane plane)
           
 void Frustum.setPlaneLeft(Plane plane)
           
 void Frustum.setPlaneNear(Plane plane)
           
 void Frustum.setPlaneRight(Plane plane)
           
 void Frustum.setPlaneTop(Plane plane)
           
static void Plane.toPool(Plane plane)
          Pushes a Plane-instance to the pool.
 

Constructors in org.openmali.spatial.bodies with parameters of type Plane
ConvexHull(Plane[] theSlabs)
           
Plane(Plane plane)
          Plane constructor comment.