typedef struct _CONTAINERBEZIERDATA
{
L_INT nSize;
VECTORPOINT vptBezier[4];
} CONTAINERBEZIERDATA, *pCONTAINERBEZIERDATA;
The CONTAINERBEZIERDATA structure holds the coordinates of the endpoints and control points of a Bezier object.
Size of this structure.
Array of VECTORPOINT structures that contains the endpoints and control points of the curve. The order of the points is as follows:
Value | Meaning |
---|---|
Point[0] | Start point. |
Point[1] | First control point. |
Point[2] | Second control point. |
Point[3] | End point. |