com.jme.animation
Class SpatialTransformer.PointInTime

java.lang.Object
  extended bycom.jme.animation.SpatialTransformer.PointInTime
Enclosing class:
SpatialTransformer

public class SpatialTransformer.PointInTime
extends java.lang.Object

Defines a point in time where at time time, ohject toChange[i] will assume transformation look[i]. BitSet's used* specify if the transformation value was specified by the user, or interpolated


Field Summary
 TransformMatrixQuat[] look
          toChange[i] looks like look[i] at time.
 float time
          The time of this TransformationMatrix.
 java.util.BitSet usedRot
          Bit i is true if look[i].rotation was user defined.
 java.util.BitSet usedScale
          Bit i is true if look[i].scale was user defined.
 java.util.BitSet usedTrans
          Bit i is true if look[i].translation was user defined.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

usedRot

public java.util.BitSet usedRot
Bit i is true if look[i].rotation was user defined.


usedTrans

public java.util.BitSet usedTrans
Bit i is true if look[i].translation was user defined.


usedScale

public java.util.BitSet usedScale
Bit i is true if look[i].scale was user defined.


time

public float time
The time of this TransformationMatrix.


look

public TransformMatrixQuat[] look
toChange[i] looks like look[i] at time.