Uses of Package
org.jdesktop.animation.timing.interpolation

Packages that use org.jdesktop.animation.timing.interpolation
org.jdesktop.animation.timing Core classes of the Timing Framework; these classes provide the base functionality that all animations will use. 
org.jdesktop.animation.timing.interpolation Provides a mechanism for animating object properties between different values. 
 

Classes in org.jdesktop.animation.timing.interpolation used by org.jdesktop.animation.timing
Interpolator
          Interface that defines the single Interpolator.interpolate(float) method.
 

Classes in org.jdesktop.animation.timing.interpolation used by org.jdesktop.animation.timing.interpolation
DiscreteInterpolator
          This class implements the Interpolator interface.
Evaluator
          This class is used by KeyValues to calculate intermediate values for specific types.
Interpolator
          Interface that defines the single Interpolator.interpolate(float) method.
KeyFrames
          KeyFrames holds information about the times at which values are sampled (KeyTimes) and the values at those times (KeyValues).
KeyTimes
          Stores a list of times from 0 to 1 (the elapsed fraction of an animation cycle) that are used in calculating interpolated values for PropertySetter given a matching set of KeyValues and Interpolators for those time intervals.
KeyValues
          Stores a list of values that correspond to the times in a KeyTimes object.
LinearInterpolator
          This class implements the Interpolator interface by providing a simple interpolate function that simply returns the value that it was given.