typedef struct _CONTAINERLINEDATA
{
L_INT nSize;
VECTORPOINT vptLine [ 2 ];
} CONTAINERLINEDATA, *pCONTAINERLINEDATA ;
The CONTAINERLINEDATA holds the coordinates of a line object.
Member | Description | |
nSize | Size of this structure. | |
vptLine [ 2 ] | An array of structures that contain the beginning and ending points of the line. The contents of the array are as follows: | |
Value | Meaning | |
vptLine [ 0 ].x | The starting x position. | |
vptLine [ 0 ].y | The starting y position. | |
vptLine [ 1 ].x | The ending x position. | |
vptLine [ 1 ].y | The ending y position. |