Package edu.cmu.sun.interpolators

Interpolators between set values that assist with Animation and curve shape creation.

See:
          Description

Class Summary
CompositeInterpolator3D Comibnes three Interpolator1D objects and allows for acces to iterated points through a Point3f object.
Interpolator1D Absctrat class to define an one dimensional interpolator that will travel between the from value and the two value.
LinearInterpolator1D Interpolates between the from and to values in a linear fashion.
SimpleFloatSmoother Built for PLG, this smother does linear translations between values.
SimpleMotionAnimation A PluggableC3DAnimation that uses Simple smoothers to do linear translations.
SimpleVector3fSmoother A 3d smoother that does linear interpolation between the 3d points.
SmoothInterpolator1D Similar to the linear interpolator, except that it smooths the interpolation using trig functions.
 

Package edu.cmu.sun.interpolators Description

Interpolators between set values that assist with Animation and curve shape creation. Half of this package describes a SimpleMotionAnimation object which provides linear interpolations during an animation within looking glass. The other half of this package is some skeleton interpolators to do a very basic ease-in ease-out interpolation and is used for curve-drawing in our system. We wrote the classes for curve generation because we thought we were going to do a lot more curve drawing. Unfortunately, we ran out of time, and they are only used to draw the Fold geometry in the system.