Class InterpolatedDoubleChannel

java.lang.Object
com.ardor3d.extension.animation.skeletal.clip.AbstractAnimationChannel
com.ardor3d.extension.animation.skeletal.clip.InterpolatedDoubleChannel
All Implemented Interfaces:
Savable

public class InterpolatedDoubleChannel extends AbstractAnimationChannel
An animation source channel consisting of double value samples. These samples are interpolated between key frames. Potential uses for this channel include extracting and using forward motion from walk animations, animating colors or texture coordinates, etc.
  • Field Details

    • _values

      protected final double[] _values
      Our key samples.
  • Constructor Details

    • InterpolatedDoubleChannel

      public InterpolatedDoubleChannel(String channelName, float[] times, double[] values)
      Construct a new InterpolatedDoubleChannel.
      Parameters:
      channelName - the name of this channel.
      times - the time samples
      values - our key samples. Entries may be null. Should have as many entries as the times array.
    • InterpolatedDoubleChannel

      protected InterpolatedDoubleChannel()
  • Method Details