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.
Member | Description | |
nSize | Size of this structure. | |
vptBezier [ 4 ] | Array of VECTORPOINT structures that contain 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. |