VECTORPOINT
Show in webframe
typedef struct _VECTORPOINT
{
L_DOUBLE x;
L_DOUBLE y;
L_DOUBLE z;
} VECTORPOINT, *pVECTORPOINT;
The VECTORPOINT structure holds information about a point.
Member
|
Description
|
x
|
X coordinate of the point.
|
y
|
Y coordinate of the point.
|
z
|
Z coordinate of the point.
|