typedef struct _CONTAINERELLIPSEDATA
{
L_INT nSize;
VECTORPOINT vptEllipse[2];
} CONTAINERELLIPSEDATA, *pCONTAINERELLIPSEDATA;
The CONTAINERELLIPSEDATA structure holds the coordinates of the bounding rectangle of an ellipse object.
Size of this structure.
An array of structures that contains the upper-left and lower-right points of the bounding rectangle of the ellipse object. The contents of the array are as follows:
Value | Meaning |
---|---|
vptEllipse[0].x | X-coordinate of the upper-left corner of the ellipse's bounding rectangle. |
vptEllipse[0].y | Y-coordinate of the upper-left corner of the ellipse's bounding rectangle. |
vptEllipse[1].x | X-coordinate of the lower-right corner of the ellipse's bounding rectangle. |
vptEllipse[1].y | Y-coordinate of the lower-right corner of the ellipse's bounding rectangle. |