Get the string representation
| 384 | |
| 385 | // Get the string representation |
| 386 | RP3D_FORCE_INLINE std::string Vector3::to_string() const { |
| 387 | return "Vector3(" + std::to_string(x) + "," + std::to_string(y) + "," + std::to_string(z) + ")"; |
| 388 | } |
| 389 | |
| 390 | // Return the zero vector |
| 391 | RP3D_FORCE_INLINE Vector3 Vector3::zero() { |
nothing calls this directly
no outgoing calls
no test coverage detected