Uses of Class
com.jme.curve.Curve

Packages that use Curve
com.jme.curve   
com.jme.renderer   
com.jme.renderer.lwjgl   
 

Uses of Curve in com.jme.curve
 

Subclasses of Curve in com.jme.curve
 class 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.
 

Constructors in com.jme.curve with parameters of type Curve
CurveController(Curve curve, Spatial mover)
          Constructor instantiates a new CurveController object.
CurveController(Curve curve, Spatial mover, float minTime, float maxTime)
          Constructor instantiates a new CurveController object.
 

Uses of Curve in com.jme.renderer
 

Methods in com.jme.renderer with parameters of type Curve
 void Renderer.draw(Curve c)
          draw renders a curve to the back buffer.
 

Uses of Curve in com.jme.renderer.lwjgl
 

Methods in com.jme.renderer.lwjgl with parameters of type Curve
 void LWJGLRenderer.draw(Curve c)
          draw renders a curve object.