Uses of Class
com.jme.intersection.PickResults

Packages that use PickResults
com.jme.curve   
com.jme.intersection   
com.jme.scene   
 

Uses of PickResults in com.jme.curve
 

Methods in com.jme.curve with parameters of type PickResults
 void BezierCurve.findPick(Ray toTest, PickResults results)
           
 void CatmullRomCurve.findPick(Ray toTest, PickResults results)
           
 void PolylineCurve.findPick(Ray toTest, PickResults results)
           
 

Uses of PickResults in com.jme.intersection
 

Subclasses of PickResults in com.jme.intersection
 class BoundingPickResults
          BoundingPickResults creates a PickResults object that only cares about bounding volume accuracy.
 class TrianglePickResults
          TrianglePickResults creates a PickResults object that calculates picking to the triangle accuracy.
 

Uses of PickResults in com.jme.scene
 

Methods in com.jme.scene with parameters of type PickResults
 void Spatial.calculatePick(Ray ray, PickResults results)
           
 void Geometry.findPick(Ray ray, PickResults results)
          Check if this geom intersects the ray if yes add it to the results.
 void Node.findPick(Ray toTest, PickResults results)
           
abstract  void Spatial.findPick(Ray toTest, PickResults results)
          Tests a ray against this spatial, and stores the results in the result object.
 void SwitchNode.findPick(Ray toTest, PickResults results)