Package com.sun.j3d.utils.behaviors.vp
Class WandViewBehavior.RotationListener6D
- java.lang.Object
-
- com.sun.j3d.utils.behaviors.sensor.SensorInputAdaptor
-
- com.sun.j3d.utils.behaviors.vp.WandViewBehavior.ListenerBase
-
- com.sun.j3d.utils.behaviors.vp.WandViewBehavior.RotationListener6D
-
- All Implemented Interfaces:
SensorButtonListener,SensorReadListener
- Enclosing class:
- WandViewBehavior
public class WandViewBehavior.RotationListener6D extends WandViewBehavior.ListenerBase
Implements a 6DOF sensor button listener that rotates the view platform about a Y axis. This axis can be relative to the sensor, user head, or view platform. The rotation center can be the sensor hotspot or a fixed point in virtual world coordinates.- See Also:
WandViewBehavior.setButtonAction6D(int, int),WandViewBehavior.setRotationCoords(int),WandViewBehavior.setTransformCenterSource(int),WandViewBehavior.setTransformCenter(javax.vecmath.Point3d),WandViewBehavior.setRotationSpeed(double, int, int),WandViewBehavior.setAccelerationTime(double)
-
-
Field Summary
-
Fields inherited from class com.sun.j3d.utils.behaviors.vp.WandViewBehavior.ListenerBase
sensorToTracker, sensorToVworld, trackerToVworld, viewPlatformToVworld
-
-
Constructor Summary
Constructors Constructor Description RotationListener6D(boolean reverse)Construct a new rotation button listener for a 6DOF sensor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddragged(SensorEvent e)This method is called with each invocation of thedispatchEventsmethod ofSensorEventAgentif any button bound to the listener is down and has not changed state since the last invocation.protected voidendAction(Sensor s)Ends the action.protected voidinitAction(Sensor s)Initializes the listener action.voidpressed(SensorEvent e)This method is called when a sensor's button is pressed.-
Methods inherited from class com.sun.j3d.utils.behaviors.vp.WandViewBehavior.ListenerBase
conditionViewScale, getPhysicalToViewPlatformScale, getPhysicalToVirtualScale, isActive, released, transformAboutCenter, translateTransform
-
Methods inherited from class com.sun.j3d.utils.behaviors.sensor.SensorInputAdaptor
clicked, read
-
-
-
-
Method Detail
-
initAction
protected void initAction(Sensor s)
Description copied from class:WandViewBehavior.ListenerBaseInitializes the listener action. Subclasses must call this before starting the action, either frompressedor when a 2D valuator exits the deadzone threshold.- Overrides:
initActionin classWandViewBehavior.ListenerBase- Parameters:
s- reference to a 6DOF sensor if used by the listener; may benull
-
endAction
protected void endAction(Sensor s)
Description copied from class:WandViewBehavior.ListenerBaseEnds the action. Subclasses must be call this fromreleasedor when a 2D valuator enters the deadzone threshold.- Overrides:
endActionin classWandViewBehavior.ListenerBase- Parameters:
s- reference to a 6DOF sensor if used by the listener; may benull
-
pressed
public void pressed(SensorEvent e)
Description copied from interface:SensorButtonListenerThis method is called when a sensor's button is pressed.- Specified by:
pressedin interfaceSensorButtonListener- Overrides:
pressedin classWandViewBehavior.ListenerBase- Parameters:
e- the sensor event
-
dragged
public void dragged(SensorEvent e)
Description copied from interface:SensorButtonListenerThis method is called with each invocation of thedispatchEventsmethod ofSensorEventAgentif any button bound to the listener is down and has not changed state since the last invocation. The sensor value has not necessarily changed from the last drag event.- Specified by:
draggedin interfaceSensorButtonListener- Overrides:
draggedin classSensorInputAdaptor- Parameters:
e- the sensor event
-
-