Uses of Class
com.jme.curve.Curve

Packages that use Curve
com.jme.curve   
com.jme.renderer   
com.jme.renderer.jogl   
com.jme.renderer.lwjgl   
com.jme.system.dummy   
 

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.
 class CatmullRomCurve
          CatmullRomCurve
 class PolylineCurve
           
 

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
abstract  void Renderer.draw(Curve c)
          draw renders a curve to the back buffer.
 

Uses of Curve in com.jme.renderer.jogl
 

Methods in com.jme.renderer.jogl with parameters of type Curve
 void JOGLRenderer.draw(Curve curve)
          draw renders a curve object.
 

Uses of Curve in com.jme.renderer.lwjgl
 

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

Uses of Curve in com.jme.system.dummy
 

Methods in com.jme.system.dummy with parameters of type Curve
 void DummyRenderer.draw(Curve c)