Interface PickingCallback


public interface PickingCallback
The PickingCallback interface is implemented by classes wishing to recieve notification that a picked object has moved.
Author:
Michael J. Schnieders
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The user made a selection but nothing was actually picked
    static final int
    Constant ORBIT=6
    static final int
    Constant PROPERTIES=5
    static final int
    Constant ROTATE=0
    static final int
    Constant SELECTION=4
    static final int
    Constant TRANSLATE=1
    static final int
    Constant ZOOM=2
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    transformChanged(int type, org.jogamp.java3d.TransformGroup tg)
    Called by the Pick Behavior with which this callback is registered each time the Picked object is moved.
    void
    transformClicked(int type, org.jogamp.java3d.TransformGroup tg)
    transformClicked
    void
    transformDoubleClicked(int type, org.jogamp.java3d.TransformGroup tg)
    transformDoubleClicked
  • Field Details

  • Method Details

    • transformChanged

      void transformChanged(int type, org.jogamp.java3d.TransformGroup tg)
      Called by the Pick Behavior with which this callback is registered each time the Picked object is moved.

      transformChanged

      Parameters:
      type - a int.
      tg - a TransformGroup object.
    • transformClicked

      void transformClicked(int type, org.jogamp.java3d.TransformGroup tg)
      transformClicked
      Parameters:
      type - a int.
      tg - a TransformGroup object.
    • transformDoubleClicked

      void transformDoubleClicked(int type, org.jogamp.java3d.TransformGroup tg)
      transformDoubleClicked
      Parameters:
      type - a int.
      tg - a TransformGroup object.