Point3D
Description
Represents three-dimensional point in the Cartesian system.
struct Point3D
{
real x;
real y;
real z;
};
Structure fields and default values (if defined) are described below:
struct Point3D
{
Real X;
Real Y;
Real Z;
Real X( void ) const { return X; };
Real Y( void ) const { return Y; };
Real Z( void ) const { return Z; };
bool operator == ( const avl::Point3D& rhs ) const
{
return X == rhs.X &&
Y == rhs.Y && Z == rhs.Z
;
}
bool operator != ( const avl::Point3D& rhs ) const
{
return !(operator==(rhs));
}
};
