Uses of Class
at.wisch.joystick.ffeffect.direction.Direction

Packages that use Direction
at.wisch.joystick.ffeffect   
at.wisch.joystick.ffeffect.direction   
 

Uses of Direction in at.wisch.joystick.ffeffect
 

Methods in at.wisch.joystick.ffeffect that return Direction
static Direction Effect.getDefaultDirection()
          Gets the default direction.
 Direction ExtendedEffect.getDirection()
          Gets the direction for the effect.
 

Methods in at.wisch.joystick.ffeffect with parameters of type Direction
static boolean Effect.setDefaultDirection(Direction direction)
          Sets the default direction.
 void ExtendedEffect.setDirection(Direction direction)
          Sets the direction for the effect.
 void CustomEffect.setSamples(int[] data, Direction dir)
          Deprecated. Sets the data array.
 

Constructors in at.wisch.joystick.ffeffect with parameters of type Direction
ConstantEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int level)
          Instantiates a new ConstantEffect with the specified parameters.
CustomEffect(Direction direction)
          Deprecated. Instantiates a new custom effect with default parameters, using a Direction object.
CustomEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int period, int[] data)
          Deprecated. Instantiates a new CustomEffect with the specified parameters.
RampEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int startLevel, int endLevel)
          Instantiates a new RampEffect with the specified parameters.
SawtoothDownEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int period, int magnitude, int offset, int phase)
          Instantiates a new SawtoothDownEffect with the specified parameters.
SawtoothUpEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int period, int magnitude, int offset, int phase)
          Instantiates a new SawtoothUpEffect with the specified parameters.
SineEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int period, int magnitude, int offset, int phase)
          Instantiates a new SineEffect with the specified parameters.
SquareEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int period, int magnitude, int offset, int phase)
          Instantiates a new SquareEffect with the specified parameters.
TriangleEffect(Direction direction, int effectLength, int effectDelay, int buttonIndex, int buttonInterval, int attackLength, int fadeLength, int attackLevel, int fadeLevel, int period, int magnitude, int offset, int phase)
          Instantiates a new TriangleEffect with the specified parameters.
 

Uses of Direction in at.wisch.joystick.ffeffect.direction
 

Subclasses of Direction in at.wisch.joystick.ffeffect.direction
 class CartesianDirection
          The Class CartesianDirection.
 class PolarDirection
          The Class PolarDirection.
 class SphericalDirection
          The Class SphericalDirection.
 

Methods in at.wisch.joystick.ffeffect.direction with parameters of type Direction
 CartesianDirection SphericalDirection.toCartesianDirection(Direction direction)
           
 CartesianDirection PolarDirection.toCartesianDirection(Direction direction)
           
abstract  CartesianDirection Direction.toCartesianDirection(Direction direction)
          Converts the Direction to CartesianDirection.
 CartesianDirection CartesianDirection.toCartesianDirection(Direction direction)
           
 PolarDirection SphericalDirection.toPolarDirection(Direction direction)
          Converts the Direction to PolarDirection.
 PolarDirection PolarDirection.toPolarDirection(Direction direction)
          Converts the Direction to PolarDirection.
abstract  PolarDirection Direction.toPolarDirection(Direction direction)
          Converts the Direction to PolarDirection.
 PolarDirection CartesianDirection.toPolarDirection(Direction direction)
          Converts the Direction to PolarDirection.
 SphericalDirection SphericalDirection.toSphericalDirection(Direction direction)
          Converts the Direction to SphericalDirection.
 SphericalDirection PolarDirection.toSphericalDirection(Direction direction)
          Converts the Direction to SphericalDirection.
abstract  SphericalDirection Direction.toSphericalDirection(Direction direction)
          Converts the Direction to SphericalDirection.
 SphericalDirection CartesianDirection.toSphericalDirection(Direction direction)
          Converts the Direction to SphericalDirection.