Class BoundingPickResults

java.lang.Object
com.ardor3d.intersection.PickResults
com.ardor3d.intersection.BoundingPickResults

public class BoundingPickResults extends PickResults
BoundingPickResults implements the addPick of PickResults to use PickData objects that calculate bounding volume level accurate ray picks.
  • Constructor Details

    • BoundingPickResults

      public BoundingPickResults()
  • Method Details

    • addPick

      public void addPick(Ray3 ray, Pickable p)
      Description copied from class: PickResults
      addPick generates an entry to be added to the list of picked objects. If checkDistance is true, the implementing class should order the object.
      Specified by:
      addPick in class PickResults
      Parameters:
      ray - the ray that was cast for the pick calculation.
      p - the pickable object to add to the pick data.