typedef struct _CONTAINERCIRCLEDATA
{
L_INT nSize ;
VECTORPOINT vptCircle[2];
} CONTAINERCIRCLEDATA, *pCONTAINERCIRCLEDATA;
The CONTAINERCIRCLEDATA structure holds the coordinates of the bounding square of a circle object.
Size of this structure.
An array of structures that contains the upper-left and lower-right points of the bounding square of the circle object. The contents of the array are as follows:
Value | Meaning |
---|---|
vptCircle[0].x | X-coordinate of the upper-left corner of the circle's bounding square. |
vptCircle[0].y | Y-coordinate of the upper-left corner of the circle's bounding square. |
vptCircle[1].x | X-coordinate of the lower-right corner of the circle's bounding square. |
vptCircle[1].y | Y-coordinate of the lower-right corner of the circle's bounding square. |