Class NodeKeyframe<T>


  • public class NodeKeyframe<T>
    extends java.lang.Object
    A NodeKeyframe specifies the a value (e.g. the translation, rotation or scale) of a frame within a NodeAnimation.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      float keytime
      the timestamp of this keyframe
      T value
      the value of this keyframe at the specified timestamp
    • Constructor Summary

      Constructors 
      Constructor Description
      NodeKeyframe​(float t, T v)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • keytime

        public float keytime
        the timestamp of this keyframe
      • value

        public final T value
        the value of this keyframe at the specified timestamp
    • Constructor Detail

      • NodeKeyframe

        public NodeKeyframe​(float t,
                            T v)