CFx SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
OdGeVector3d Class Reference

#include <GeVector3d.h>

Inheritance diagram for OdGeVector3d:
AecUtils::AecVector3d

Public Member Functions

 OdGeVector3d ()
 
 OdGeVector3d (double xx, double yy, double zz)
 
 OdGeVector3d (const OdGePlanarEnt &plane, const OdGeVector2d &vector2d)
 
OdGeVector3dsetToProduct (const OdGeMatrix3d &matrix, const OdGeVector3d &vect)
 
OdGeVector3dsetToProduct (const OdGeVector3d &vect, double scale)
 
OdGeVector3dtransformBy (const OdGeMatrix3d &xfm)
 
OdGeVector3drotateBy (double angle, const OdGeVector3d &axis)
 
OdGeVector3dmirror (const OdGeVector3d &normalToPlane)
 
OdGeVector2d convert2d (const OdGePlanarEnt &plane) const
 
OdGeVector2d convert2d () const
 
OdGeVector3d operator* (double scale) const
 
OdGeVector3doperator*= (double scale)
 
OdGeVector3d operator/ (double scale) const
 
OdGeVector3doperator/= (double scale)
 
OdGeVector3d operator+ (const OdGeVector3d &vect) const
 
OdGeVector3d operator+= (const OdGeVector3d &vect)
 
OdGeVector3d operator- (const OdGeVector3d &vect) const
 
OdGeVector3d operator-= (const OdGeVector3d &vect)
 
const OdGePoint3dasPoint () const
 
OdGePoint3dasPoint ()
 
OdGeVector3dsetToSum (const OdGeVector3d &vector1, const OdGeVector3d &vector2)
 
OdGeVector3d operator- () const
 
OdGeVector3dnegate ()
 
OdGeVector3d perpVector () const
 
double angleTo (const OdGeVector3d &vect) const
 
double angleTo (const OdGeVector3d &vect, const OdGeVector3d &refVector) const
 
double angleOnPlane (const OdGePlanarEnt &plane) const
 
OdGeVector3d normal (const OdGeTol &tol=OdGeContext::gTol) const
 
OdGeVector3dnormalize (const OdGeTol &tol=OdGeContext::gTol)
 
OdGeVector3dnormalize (const OdGeTol &tol, OdGe::ErrorCondition &status)
 
double normalizeGetLength (double tol=1.e-300)
 
double length () const
 
void setLength (double length)
 
double lengthSqrd () const
 
bool isUnitLength (const OdGeTol &tol=OdGeContext::gTol) const
 
bool isZeroLength (const OdGeTol &tol=OdGeContext::gTol) const
 
bool isParallelTo (const OdGeVector3d &vect, const OdGeTol &tol=OdGeContext::gTol) const
 
bool isParallelTo (const OdGeVector3d &vect, const OdGeTol &tol, OdGeError &status) const
 
bool isCodirectionalTo (const OdGeVector3d &vect, const OdGeTol &tol=OdGeContext::gTol) const
 
bool isCodirectionalTo (const OdGeVector3d &vect, const OdGeTol &tol, OdGeError &status) const
 
bool isPerpendicularTo (const OdGeVector3d &vect, const OdGeTol &tol=OdGeContext::gTol) const
 
bool isPerpendicularTo (const OdGeVector3d &vect, const OdGeTol &tol, OdGeError &status) const
 
double dotProduct (const OdGeVector3d &vect) const
 
OdGeVector3d crossProduct (const OdGeVector3d &vect) const
 
OdGeVector3d project (const OdGeVector3d &planeNormal, const OdGeVector3d &projectDirection) const
 
OdGeVector3d project (const OdGeVector3d &planeNormal, const OdGeVector3d &projectDirection, const OdGeTol &tol, OdGeError &flag) const
 
OdGeVector3d orthoProject (const OdGeVector3d &planeNormal) const
 
OdGeVector3d orthoProject (const OdGeVector3d &planeNormal, const OdGeTol &tol, OdGeError &flag) const
 
bool operator== (const OdGeVector3d &vect) const
 
bool operator!= (const OdGeVector3d &vect) const
 
bool isEqualTo (const OdGeVector3d &vect, const OdGeTol &tol=OdGeContext::gTol) const
 
double operator[] (unsigned int i) const
 
double & operator[] (unsigned int i)
 
unsigned int largestElement () const
 
OdGeVector3dset (double xx, double yy, double zz)
 
OdGeVector3dset (const OdGePlanarEnt &plane, const OdGeVector2d &vect)
 
 operator OdGeMatrix3d () const
 

Public Attributes

double x
 
double y
 
double z
 

Static Public Attributes

static GE_STATIC_EXPORT const OdGeVector3d kIdentity
 
static GE_STATIC_EXPORT const OdGeVector3d kXAxis
 
static GE_STATIC_EXPORT const OdGeVector3d kYAxis
 
static GE_STATIC_EXPORT const OdGeVector3d kZAxis
 

Detailed Description

This class represents vectors in 3D space.

Remarks
OdGeVector3d may be viewed as an array[3] of doubles.

Corresponding C++ library: TD_Ge

<group OdGe_Classes>

See also
<link ge_BasicTypes, Working with Basic Geometry Types>

Definition at line 54 of file GeVector3d.h.

Constructor & Destructor Documentation

◆ OdGeVector3d() [1/3]

OdGeVector3d::OdGeVector3d ( )
inline

Default constructor for the OdGeVector3d class.

Remarks
Constructs a zero-length 3D vector.

Definition at line 64 of file GeVector3d.h.

◆ OdGeVector3d() [2/3]

OdGeVector3d::OdGeVector3d ( double  xx,
double  yy,
double  zz 
)
inline

Constructor for the OdGeVector3d class.

Parameters
xx[in] X-coordinate.
yy[in] Y-coordinate.
zz[in] Z-coordinate.
Remarks
Constructs a 3D vector with specified X, Y and Z coordinates.

Definition at line 76 of file GeVector3d.h.

◆ OdGeVector3d() [3/3]

OdGeVector3d::OdGeVector3d ( const OdGePlanarEnt plane,
const OdGeVector2d vector2d 
)

Constructor for the OdGeVector3d class.

Parameters
plane[in] 2D plane.
vector2d[in] 2D vector.
Remarks
Constructs the 3D vector correspoponding to the 2D vector in the coordinates of the plane:

uAxis * vect.x + vAxis * vect.y

where uAxis and vAxis are returned by

plane.get(origin, uAxis, vAxis)

Member Function Documentation

◆ angleOnPlane()

double OdGeVector3d::angleOnPlane ( const OdGePlanarEnt plane) const

Returns the angle of this vector projected onto the specified plane

Parameters
plane[in] Any 3D plane.
Remarks
This vector is projected orthogonally onto the plane through its origin, and is measured with respect to axis1 as returned by
    plane.getCoordSystem(origin, axis1, axis2)

◆ angleTo() [1/2]

double OdGeVector3d::angleTo ( const OdGeVector3d vect) const

Returns the angle to the specified vector.

Parameters
vect[in] Any 3D vector.
Returns
angle to the specified vector in radians as a double value.
Remarks
Returns a value in the range [0.0 .. OdaPI]. This function is commutative.

◆ angleTo() [2/2]

double OdGeVector3d::angleTo ( const OdGeVector3d vect,
const OdGeVector3d refVector 
) const

Returns the angle to the specified vector.

Parameters
vect[in] Any 3D vector.
refVector[in] Reference vector.
Returns
angle to the specified vector in radians as a double value.
Remarks
Returns a value in the range [0.0 .. Oda2PI]. If (refVector.dotProduct(crossProduct(vect)) >= 0.0, the return value is angleTo(vect). If (refVector.dotProduct(crossProduct(vect)) < 0.0, the return value is Oda2PI - angleTo(vect)

◆ asPoint() [1/2]

OdGePoint3d & OdGeVector3d::asPoint ( )
inline

Returns this vector as a point.

Definition at line 814 of file GeVector3d.h.

◆ asPoint() [2/2]

const OdGePoint3d & OdGeVector3d::asPoint ( ) const
inline

Returns this vector as a point.

Definition at line 807 of file GeVector3d.h.

◆ convert2d() [1/2]

OdGeVector2d OdGeVector3d::convert2d ( ) const

Returns the 2D vector, in the coordinate system of the XY plane, corresponding to the 3D vector.

Remarks
The 3D vector must be parallel to the XY plane.

◆ convert2d() [2/2]

OdGeVector2d OdGeVector3d::convert2d ( const OdGePlanarEnt plane) const

Returns the 2D vector, in the coordinate system of the plane, corresponding to the 3D vector.

Parameters
plane[in] The planar entity on which the converted vector will be projected.
Remarks
The 3D vector must be parallel to the plane.

◆ crossProduct()

OdGeVector3d OdGeVector3d::crossProduct ( const OdGeVector3d vect) const
inline

Returns the cross product of this vector and the specified vector.

Parameters
vect[in] Any 3D vector.

Definition at line 595 of file GeVector3d.h.

◆ dotProduct()

double OdGeVector3d::dotProduct ( const OdGeVector3d vect) const
inline

Returns the dot product of this vector and the specified vector.

Parameters
vect[in] Any 3D vector.

Definition at line 586 of file GeVector3d.h.

◆ isCodirectionalTo() [1/2]

bool OdGeVector3d::isCodirectionalTo ( const OdGeVector3d vect,
const OdGeTol tol,
OdGeError status 
) const

Returns true if and only if the specified vector is codirectional to this vector within the specified tolerance.

Parameters
vect[in] Any 3D vector.
tol[in] Geometric tolerance.
status[out] Receives the status of test.
Remarks
If the length of either vector is < tol, k0This is returned in status.

Possible values for status are as follows:

@untitled table kOk k0This k0Arg1

◆ isCodirectionalTo() [2/2]

bool OdGeVector3d::isCodirectionalTo ( const OdGeVector3d vect,
const OdGeTol tol = OdGeContext::gTol 
) const

Returns true if and only if the specified vector is codirectional to this vector within the specified tolerance.

Parameters
vect[in] Any 3D vector.
tol[in] Geometric tolerance.

◆ isEqualTo()

bool OdGeVector3d::isEqualTo ( const OdGeVector3d vect,
const OdGeTol tol = OdGeContext::gTol 
) const

Returns true if and only if vect is identical to this vector, within the specified tolerance.

Parameters
vect[in] Any 3D vector.
tol[in] Geometric tolerance.

◆ isParallelTo() [1/2]

bool OdGeVector3d::isParallelTo ( const OdGeVector3d vect,
const OdGeTol tol,
OdGeError status 
) const

Returns true if and only if the specified vector is parallel to this vector within the specified tolerance.

Parameters
vect[in] Any 3D vector.
tol[in] Geometric tolerance.
status[out] Receives the status of test.
Remarks
If the length of either vector is < tol, k0This is returned in status.

Possible values for status are as follows:

@untitled table kOk k0This k0Arg1

◆ isParallelTo() [2/2]

bool OdGeVector3d::isParallelTo ( const OdGeVector3d vect,
const OdGeTol tol = OdGeContext::gTol 
) const

Returns true if and only if the specified vector is parallel to this vector within the specified tolerance.

Parameters
vect[in] Any 3D vector.
tol[in] Geometric tolerance.

◆ isPerpendicularTo() [1/2]

bool OdGeVector3d::isPerpendicularTo ( const OdGeVector3d vect,
const OdGeTol tol,
OdGeError status 
) const

Returns true if and only if the specified vector is perpendicular to this vector within the specified tolerance.

Parameters
vect[in] Any 3D vector.
tol[in] Geometric tolerance.
status[out] Receives the status of test.
Remarks
If the length of either vector is < tol, k0This is returned in status.

Possible values for status are as follows:

@untitled table kOk k0This k0Arg1

◆ isPerpendicularTo() [2/2]

bool OdGeVector3d::isPerpendicularTo ( const OdGeVector3d vect,
const OdGeTol tol = OdGeContext::gTol 
) const

Returns true if and only if the specified vector is perpendicular to this vector within the specified tolerance.

Parameters
vect[in] Any 3D vector.
tol[in] Geometric tolerance.

◆ isUnitLength()

bool OdGeVector3d::isUnitLength ( const OdGeTol tol = OdGeContext::gTol) const

Returns true if and only if the length of this vector is 1.0 within the specified tolerance.

Parameters
tol[in] Geometric tolerance.

◆ isZeroLength()

bool OdGeVector3d::isZeroLength ( const OdGeTol tol = OdGeContext::gTol) const

Returns true if and only if the length of this vector is 0.0 within the specified tolerance.

Parameters
tol[in] Geometric tolerance.

◆ largestElement()

unsigned int OdGeVector3d::largestElement ( ) const

Returns the index of the largest absolute coordinate of this vector.

◆ length()

double OdGeVector3d::length ( ) const

Returns the length of this vector.

◆ lengthSqrd()

double OdGeVector3d::lengthSqrd ( ) const
inline

Returns the square of the length of this vector.

Definition at line 466 of file GeVector3d.h.

◆ mirror()

OdGeVector3d & OdGeVector3d::mirror ( const OdGeVector3d normalToPlane)

Mirrors the entity about the plane passing through the origin with the specified normal, and returns a reference to the entity.

Parameters
normalToPlane[in] Normal to Plane.

◆ negate()

OdGeVector3d & OdGeVector3d::negate ( )
inline

Negates this vector (-x, -y, -z), and returns a reference to this vector.

Definition at line 330 of file GeVector3d.h.

◆ normal()

OdGeVector3d OdGeVector3d::normal ( const OdGeTol tol = OdGeContext::gTol) const

Returns the unit vector codirectional with this vector.

Parameters
tol[in] Geometric tolerance.
Remarks
If the length() <= tol, this vector is returned.

◆ normalize() [1/2]

OdGeVector3d & OdGeVector3d::normalize ( const OdGeTol tol,
OdGe::ErrorCondition status 
)

Sets this vector to the unit vector codirectional with this vector, and returns a reference to this vector

Parameters
tol[in] Geometric tolerance.
status[out] Receives the status of normalization.
Remarks
If this.length() <= tol, this vector is unchanged, and k0This is returned in status.

Possible values for status are as follows:

@untitled table kOk k0This

◆ normalize() [2/2]

OdGeVector3d & OdGeVector3d::normalize ( const OdGeTol tol = OdGeContext::gTol)

Sets this vector to the unit vector codirectional with this vector, and returns a reference to this vector

Parameters
tol[in] Geometric tolerance.
Remarks
If this.length() <= tol, this vector is unchanged.

◆ normalizeGetLength()

double OdGeVector3d::normalizeGetLength ( double  tol = 1.e-300)

Sets this vector to the unit vector codirectional with this vector, and returns the length prior to normalization.

Parameters
tol[in] Tolerance.
Returns
Vector length prior to normalization. If this.length() <= tol, this vector is unchanged and 0.0 is returned.

◆ operator OdGeMatrix3d()

OdGeVector3d::operator OdGeMatrix3d ( ) const

Returns the equivalent 3D tranformation matrix.

◆ operator!=()

bool OdGeVector3d::operator!= ( const OdGeVector3d vect) const

Inequality operator for the OdGeVector3d class.

Parameters
vect[in] A 3D vector to be compared.
Remarks
Returns true if passed vector is not equal to this vector.

◆ operator*()

OdGeVector3d OdGeVector3d::operator* ( double  scale) const
inline

Multiplication operator for the OdGeVector3d class.

Parameters
scale[in] Scale factor.
Remarks
Returns a vector with multiplied coordinates of this vector by the scale factor.

Definition at line 193 of file GeVector3d.h.

◆ operator*=()

OdGeVector3d & OdGeVector3d::operator*= ( double  scale)
inline

Multiplication operator for the OdGeVector3d class.

Parameters
scale[in] Scale factor.
Remarks
Multiplies coordinates of this vector by the scale factor and returns reference to this vector.

Definition at line 205 of file GeVector3d.h.

◆ operator+()

OdGeVector3d OdGeVector3d::operator+ ( const OdGeVector3d vect) const
inline

Addition operator for the OdGeVector3d class.

Parameters
vect[in] A 3D vector to be added.
Remarks
Returns a vector that is created by adding coordinates of this vector to the coordinates of the specified vector.

Definition at line 253 of file GeVector3d.h.

◆ operator+=()

OdGeVector3d OdGeVector3d::operator+= ( const OdGeVector3d vect)
inline

Addition operator for the OdGeVector3d class.

Parameters
vect[in] A 3D vector to be added.
Remarks
Adds coordinates of the specified vector to the coordinates of this vector and returns a reference to this vector.

Definition at line 265 of file GeVector3d.h.

◆ operator-() [1/2]

OdGeVector3d OdGeVector3d::operator- ( ) const
inline

Returns a vector with inverted X, Y and Z coordinates.

Returns
Vector opposite to this vector.

Definition at line 325 of file GeVector3d.h.

◆ operator-() [2/2]

OdGeVector3d OdGeVector3d::operator- ( const OdGeVector3d vect) const
inline

Subtraction operator for the OdGeVector3d class.

Parameters
vect[in] A 3D vector to be subtracted.
Remarks
Returns a vector that is created by subtracting coordinates of the passed vector from the coordinates of this vector.

Definition at line 277 of file GeVector3d.h.

◆ operator-=()

OdGeVector3d OdGeVector3d::operator-= ( const OdGeVector3d vect)
inline

Subtraction operator for the OdGeVector3d class.

Parameters
vect[in] A 3D vector to be subtracted.
Remarks
Returns a vector that is created by subtracting coordinates of the passed vector from the coordinates of this vector.

Definition at line 289 of file GeVector3d.h.

◆ operator/()

OdGeVector3d OdGeVector3d::operator/ ( double  scale) const
inline

Division operator for the OdGeVector3d class.

Parameters
scale[in] Scale factor.
Remarks
Returns a vector with divided coordinates of this vector by the scale factor.

Definition at line 222 of file GeVector3d.h.

◆ operator/=()

OdGeVector3d & OdGeVector3d::operator/= ( double  scale)
inline

Division operator for the OdGeVector3d class.

Parameters
scale[in] Scale factor.
Remarks
Divides coordinates of this vector by the scale factor and returns reference to this vector.

Definition at line 236 of file GeVector3d.h.

◆ operator==()

bool OdGeVector3d::operator== ( const OdGeVector3d vect) const

Equality operator for the OdGeVector3d class.

Parameters
vect[in] A 3D vector to be compared.
Remarks
Returns true if passed vector is equal to this vector.

◆ operator[]() [1/2]

double & OdGeVector3d::operator[] ( unsigned int  i)
inline

References the ith coordinate of this vector.

Parameters
i[in] Index of coordinate.
Remarks
0 references the X-coordinate. 1 references the Y-coordinate. 2 references the Z-coordinate.

Definition at line 710 of file GeVector3d.h.

◆ operator[]() [2/2]

double OdGeVector3d::operator[] ( unsigned int  i) const
inline

Returns the ith coordinate of this vector.

Parameters
i[in] Index of coordinate.
Remarks
0 returns the X-coordinate. 1 returns the Y-coordinate. 2 returns the Z-coordinate.

Definition at line 697 of file GeVector3d.h.

◆ orthoProject() [1/2]

OdGeVector3d OdGeVector3d::orthoProject ( const OdGeVector3d planeNormal) const

Returns a 3D vector which is the result of the orthogonal projection of this vector into the plane with normal planeNormal passing through the origin.

Parameters
planeNormal[in] A 3D vector which is a normal vector of a plane on which this vector is projected.

◆ orthoProject() [2/2]

OdGeVector3d OdGeVector3d::orthoProject ( const OdGeVector3d planeNormal,
const OdGeTol tol,
OdGeError flag 
) const

Returns a 3D vector which is the result of the orthogonal projection of this vector into the plane with normal planeNormal passing through the origin.

Parameters
planeNormal[in] A 3D vector which is a normal vector of a plane on which this vector is projected.
tol[in] Geometric tolerance.
flag[in] A flag that displays if method executed successfully.
Remarks
The flag is set to kOk value if method executed successfully, otherwise it is set to k0Arg1 value.

◆ perpVector()

OdGeVector3d OdGeVector3d::perpVector ( ) const

Returns a vector perpendicular to this one.

Remarks
The orthogonal vector is determined by function OdGeContext::gOrthoVector()

◆ project() [1/2]

OdGeVector3d OdGeVector3d::project ( const OdGeVector3d planeNormal,
const OdGeVector3d projectDirection 
) const

Returns a 3D vector which is the result of the projection of this vector in given projectDirection into the plane with normal planeNormal passing through the origin.

Parameters
planeNormal[in] A 3D vector which is a normal vector of a plane on which this vector is projected.
projectDirection[in] A projection direction.

◆ project() [2/2]

OdGeVector3d OdGeVector3d::project ( const OdGeVector3d planeNormal,
const OdGeVector3d projectDirection,
const OdGeTol tol,
OdGeError flag 
) const

Returns a 3D vector which is the result of the projection of this vector in given projectDirection into the plane with normal planeNormal passing through the origin.

Parameters
planeNormal[in] A 3D vector which is a normal vector of a plane on which this vector is projected.
projectDirection[in] A projection direction.
tol[in] Geometric tolerance.
flag[in] A flag that displays if method executed successfully.
Remarks
Possible values for flag are as follows:

@untitled table kOk k0Arg1 k0Arg2 kPerpendicularArg1Arg2

◆ rotateBy()

OdGeVector3d & OdGeVector3d::rotateBy ( double  angle,
const OdGeVector3d axis 
)

Rotates this vector the specified angle about the specified axis, and returns a reference to this vector.

Parameters
angle[in] Rotation angle.
axis[in] Axis of rotation.

◆ set() [1/2]

OdGeVector3d & OdGeVector3d::set ( const OdGePlanarEnt plane,
const OdGeVector2d vect 
)

Sets this vector to the specified arguments, and returns a reference to this vector.

Parameters
vect[in] Any 2D vector.
plane[in] Any plane.
Remarks
When called with plane and vector, constructs the 3D vector correspoponding to the 2D vector in the coordinates of the plane:
    uAxis * vect.x + vAxis * vect.y
where uAxis and vAxis are returned by
    plane.get(origin, uAxis, vAxis)
The 3D vector will be parallel to the 2D vector.

◆ set() [2/2]

OdGeVector3d & OdGeVector3d::set ( double  xx,
double  yy,
double  zz 
)
inline

Sets this vector to the specified arguments, and returns a reference to this vector.

Parameters
xx[in] X-coordinate.
yy[in] Y-coordinate.
zz[in] Z-coordinate.

Definition at line 725 of file GeVector3d.h.

◆ setLength()

void OdGeVector3d::setLength ( double  length)

Sets the length of this vector.

Parameters
length[in] Vector length.

◆ setToProduct() [1/2]

OdGeVector3d & OdGeVector3d::setToProduct ( const OdGeMatrix3d matrix,
const OdGeVector3d vect 
)

Sets this vector to the product matrix * vect and returns a reference to this vector.

Parameters
matrix[in] Any 3D matrix.
vect[in] Any 3D vector.

◆ setToProduct() [2/2]

OdGeVector3d & OdGeVector3d::setToProduct ( const OdGeVector3d vect,
double  scale 
)
inline

Sets this vector to the product scale * vect and returns a reference to this vector.

Parameters
vect[in] Any 3D vector.
scale[in] Scale factor.

Definition at line 123 of file GeVector3d.h.

◆ setToSum()

OdGeVector3d & OdGeVector3d::setToSum ( const OdGeVector3d vector1,
const OdGeVector3d vector2 
)
inline

Sets this vector to vector1 + vector1, and returns a reference to this vector.

Parameters
vector1[in] Any 3D vector.
vector2[in] Any 3D vector.

Definition at line 309 of file GeVector3d.h.

◆ transformBy()

OdGeVector3d & OdGeVector3d::transformBy ( const OdGeMatrix3d xfm)

Applies the 3D transformation matrix to this vector.

Parameters
xfm[in] 3D transformation matrix.

Member Data Documentation

◆ kIdentity

GE_STATIC_EXPORT const OdGeVector3d OdGeVector3d::kIdentity
static

Definition at line 100 of file GeVector3d.h.

◆ kXAxis

GE_STATIC_EXPORT const OdGeVector3d OdGeVector3d::kXAxis
static

Definition at line 101 of file GeVector3d.h.

◆ kYAxis

GE_STATIC_EXPORT const OdGeVector3d OdGeVector3d::kYAxis
static

Definition at line 102 of file GeVector3d.h.

◆ kZAxis

GE_STATIC_EXPORT const OdGeVector3d OdGeVector3d::kZAxis
static

Definition at line 103 of file GeVector3d.h.

◆ x

double OdGeVector3d::x

Definition at line 771 of file GeVector3d.h.

◆ y

double OdGeVector3d::y

Definition at line 772 of file GeVector3d.h.

◆ z

double OdGeVector3d::z

Definition at line 773 of file GeVector3d.h.


The documentation for this class was generated from the following file: