#include <surf_api.h>
Class Description
- See also:
- Class NURBSObject, Class NURBSSurface, Class
NURBSSet, Class
NURBSControlVertex, Class
NURBSCurve,
Class NURBSFuseSurfaceCV,
Class NURBSFuseCurveCV.
- Description:
- This class describes a point in 3 space using double precision
X, Y and Z coordinates. Methods are available for getting the point
coordinates a floats, doubles or a Point3.
All methods of this class are implemented by the system.
- Data Members:
- protected:
double mX, mY, mZ;
The X, Y and Z coordinates for the point.
Constructor & Destructor Documentation
Member Function Documentation
virtual DllExport void GetPosition |
( |
TimeValue |
t, |
|
|
float & |
x, |
|
|
float & |
y, |
|
|
float & |
z |
|
) |
|
[virtual] |
- Parameters:
- float& x
The X coordinate is returned here.
float& y
The Ycoordinate is returned here.
float& z
The Z coordinate is returned here.
virtual DllExport void GetPosition |
( |
TimeValue |
t, |
|
|
double & |
x, |
|
|
double & |
y, |
|
|
double & |
z |
|
) |
|
[virtual] |
- Parameters:
- double& x
The X coordinate is returned here.
double& y
The Ycoordinate is returned here.
double& z
The Z coordinate is returned here.
Member Data Documentation