Package com.jme.curve

Class Summary
BezierCurve BezierCurve uses an ordered-list of three-dimensional points and the equation: x(t) = Sum(n, i=0) Bn,i(t)Pi
t [0,1]
Bn,i(t) = C(n;i)t^i(1-t)^(n-i)
The input (t) provides the current point of the curve at a interval [0,1] where 0 is the first control point and 1 is the second control point.
CatmullRomCurve CatmullRomCurve
Curve Curve defines a collection of points that make up a curve.
CurveController CurveController defines a controller that moves a supplied Spatial object along a curve.
PolylineCurve