Interface PickingCallback
-
public interface PickingCallback
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 thesetupCallback
method. When the picked object moves, the registered object'stransformChanged
method is invoked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
transformChanged(int type, TransformGroup tg)
Called by the Pick Behavior with which this callback is registered each time the Picked object is moved
-
-
-
Field Detail
-
ROTATE
static final int ROTATE
- See Also:
- Constant Field Values
-
TRANSLATE
static final int TRANSLATE
- See Also:
- Constant Field Values
-
ZOOM
static final int ZOOM
- See Also:
- Constant Field Values
-
NO_PICK
static final int NO_PICK
The user made a selection but nothing was actually picked- See Also:
- Constant Field Values
-
-
Method Detail
-
transformChanged
void transformChanged(int type, TransformGroup tg)
Called by the Pick Behavior with which this callback is registered each time the Picked object is moved
-
-