Return the length of the vector
| 195 | |
| 196 | // Return the length of the vector |
| 197 | RP3D_FORCE_INLINE decimal Vector3::length() const { |
| 198 | return std::sqrt(x*x + y*y + z*z); |
| 199 | } |
| 200 | |
| 201 | // Return the square of the length of the vector |
| 202 | RP3D_FORCE_INLINE decimal Vector3::lengthSquare() const { |
nothing calls this directly
no outgoing calls
no test coverage detected