---------------------------------------------------------------------------------- Description Conversion function to produce a Vector3 from this Vector3d Return Value: The Vector3 produced by the conversion ----------------------------------------------------------------------------------
| 116 | // The Vector3 produced by the conversion |
| 117 | // ---------------------------------------------------------------------------------- |
| 118 | const Vector3 AsVector3( void ) const |
| 119 | { |
| 120 | return Vector3( static_cast<float>( x ), |
| 121 | static_cast<float>( y ), |
| 122 | static_cast<float>( z ) ); |
| 123 | } |
| 124 | |
| 125 | // ---------------------------------------------------------------------------------- |
| 126 | // Description |
no test coverage detected