Package com.ms.awt Previous
Previous
Microsoft Packages
Microsoft Packages
Index
Index
Next
Next

Class OutlineCurve

public class OutlineCurve
{
	public final static int PRIM_LINE = 1;
	public final static int PRIM_QSPLINE = 2;
	public int type;
	public PointFx points[];
}

This class defines a curve on a outline.

Fields

PRIM_LINE
The curve is a polyline.
PRIM_QSPLINE
The curve is a Bezier spline
type
The type of the curve. Can be PRIM_LINE or PRIM_QSPLINE.
points
The points on the curve.


© 1996 Microsoft Corporation. All rights reserved.