| com.sun.j3d.utils.picking.behaviors.PickingCallback
PickingCallback | public interface PickingCallback (Code) | | The PickingCallback interface allows a class to be notified when a
picked object is moved. The class that is interested in object
movement implements this interface, and the object created with
that class is registered with the desired subclass of
PickMouseBehavior using the setupCallback method.
When the picked object moves, the registered object's
transformChanged method is invoked.
|
Field Summary | |
final public static int | NO_PICK | final public static int | ROTATE | final public static int | TRANSLATE | final public static int | ZOOM |
NO_PICK | final public static int NO_PICK(Code) | | The user made a selection but nothing was
actually picked
|
ROTATE | final public static int ROTATE(Code) | | |
TRANSLATE | final public static int TRANSLATE(Code) | | |
ZOOM | final public static int ZOOM(Code) | | |
transformChanged | public void transformChanged(int type, TransformGroup tg)(Code) | | Called by the Pick Behavior with which this callback
is registered each time the Picked object is moved
|
|
|