Uses of Interface
toxi.math.InterpolateStrategy

Packages that use InterpolateStrategy
toxi.geom   
toxi.math   
 

Uses of InterpolateStrategy in toxi.geom
 

Methods in toxi.geom with parameters of type InterpolateStrategy
 Quaternion Quaternion.interpolateTo(Quaternion target, float t, InterpolateStrategy is)
           
 Vec2D Vec2D.interpolateTo(Vec2D v, float f, InterpolateStrategy s)
          Interpolates the vector towards the given target vector, using the given InterpolateStrategy
 Vec3D Vec3D.interpolateTo(Vec3D v, float f, InterpolateStrategy s)
          Interpolates the vector towards the given target vector, using the given InterpolateStrategy.
 Quaternion Quaternion.interpolateToSelf(Quaternion target, float t, InterpolateStrategy is)
          Uses spherical interpolation to approach the target quaternion.
 Vec2D Vec2D.interpolateToSelf(Vec2D v, float f, InterpolateStrategy s)
          Interpolates the vector towards the given target vector, using the given InterpolateStrategy
 Vec3D Vec3D.interpolateToSelf(Vec3D v, float f, InterpolateStrategy s)
          Interpolates the vector towards the given target vector, using the given InterpolateStrategy.
 

Uses of InterpolateStrategy in toxi.math
 

Classes in toxi.math that implement InterpolateStrategy
 class CircularInterpolation
          Implementation of the circular interpolation function.
 class CosineInterpolation
          Implementation of the cosine interpolation function: i = b+(a-b)*(0.5+0.5*cos(f*PI))
 class LinearInterpolation
          Implementation of the linear interpolation function i = a+(b-a)*f
 class SigmoidInterpolation
          Implements the sigmoid interpolation function with adjustable curve sharpness
 class ZoomLensInterpolation
          This class provides an adjustable zoom lens to either bundle or dilate values around a focal point within a given interval.
 

Methods in toxi.math with parameters of type InterpolateStrategy
 void ScaleMap.setMapFunction(InterpolateStrategy func)
          Overrides the mapping function used for the scale conversion.