Uses of Class
data.ControlPoint

Packages that use ControlPoint
data   
system   
 

Uses of ControlPoint in data
 

Fields in data declared as ControlPoint
protected  ControlPoint[] Curve.cparray
          The array of ControlPoints.
 

Methods in data that return ControlPoint
 ControlPoint Curve.getControlPoint(int index)
          Returns the ControlPoint identified by P(index) as in the Bezier formula.
 

Methods in data with parameters of type ControlPoint
 void Curve.setControlPoint(int index, ControlPoint cp)
          Sets the ControlPoint at index (identified by P(index) as in the Bezier formula) of this Curve to the given ControlPoint.
 

Constructors in data with parameters of type ControlPoint
Curve(ControlPoint cp1, ControlPoint cp2, ControlPoint cp3, ControlPoint cp4)
          Creates a new Curve with the 4 given ControlPoints.
 

Uses of ControlPoint in system
 

Methods in system that return ControlPoint
protected  ControlPoint CurveReader.convertToControlPoint(kirk.io.sdl.SDLElement sdlelement)
          Converts the given SDLElement into a ControlPoint, providing it represents one (it has to have "controlpoint" as name, and be an SDL normal element).