Uses of Interface
javax.media.j3d.InputDevice

Packages that use InputDevice
javax.media.j3d Provides the core set of classes for the 3D graphics API for the Java platform; click here for more information, including explanatory material that was formerly found in the guide. 
 

Uses of InputDevice in javax.media.j3d
 

Methods in javax.media.j3d that return InputDevice
 InputDevice Sensor.getDevice()
          Retrieves the sensor's associated input device.
 

Methods in javax.media.j3d that return types with arguments of type InputDevice
 java.util.Enumeration<InputDevice> PhysicalEnvironment.getAllInputDevices()
          Create an enumerator that produces all input devices.
 

Methods in javax.media.j3d with parameters of type InputDevice
 void PhysicalEnvironment.addInputDevice(InputDevice device)
          Add an input device to the list of input devices.
 void PhysicalEnvironment.removeInputDevice(InputDevice device)
          Remove an input device from the list of input devices.
 void Sensor.setDevice(InputDevice device)
          Set the sensor's associated input device.
 

Constructors in javax.media.j3d with parameters of type InputDevice
Sensor(InputDevice device)
          Constructs a Sensor object for the specified input device using default parameters.
Sensor(InputDevice device, int sensorReadCount)
          Constructs a Sensor object for the specified input device using the specified number of SensorRead objects.
Sensor(InputDevice device, int sensorReadCount, int sensorButtonCount)
          Constructs a Sensor object for the specified input device using the specified number of SensorRead objects and number of buttons.
Sensor(InputDevice device, int sensorReadCount, int sensorButtonCount, Point3d hotspot)
          Constructs a Sensor object for the specified input device using the specified number of SensorRead objects, number of buttons, and hotspot.
Sensor(InputDevice device, int sensorReadCount, Point3d hotspot)
          Constructs a Sensor object for the specified input device using the specified number of SensorRead objects and hotspot.
Sensor(InputDevice device, Point3d hotspot)
          Constructs a Sensor object for the specified input device using the specified hotspot.