Class Point3D



A point in 3D space.

Member Functions

Member Variables


Point3D(void)

Default constructor, creates a point at (0, 0, 0).


Point3D(MHFloat newX, MHFloat newY, MHFloat newZ)

Constructor, creates a point at the specified location.


Point3D(const Point3D &source)

Copy constructor, creates a point that's a copy of source.


EulerAngle angleDeg(const Point3D &pointTwo)

Returns the angle between this point and pointTwo, in degrees.


MHFloat distance(const Point3D &pointTwo)

Returns the distance between this point and pointTwo.


MHFloat x

MHFloat y

MHFloat z

The point's coordinates.











Back to Contents