Class OutlineCurve
public class OutlineCurve
{
// Fields
public FloatPoint points[];
public final static int PRIM_LINE;
public final static int PRIM_QSPLINE;
public int type;
}
This class, which defines the curves of an outline, is used by the OutlinePolygon class to define curves of character outlines.
- points[]
- Indicates the array of coordinates that define the curve.
- PRIM_LINE
- Indicates that the curve is a polyline.
- PRIM_QSPLINE
- Indicates that the curve is a Bezier spline.
- type
- Indicates the type of curve. This field may be PRIM_LINE or PRIM_QSPLINE.