Get the string representation
| 339 | |
| 340 | // Get the string representation |
| 341 | RP3D_FORCE_INLINE std::string Vector2::to_string() const { |
| 342 | return "Vector2(" + std::to_string(x) + "," + std::to_string(y) + ")"; |
| 343 | } |
| 344 | |
| 345 | // Return the zero vector |
| 346 | RP3D_FORCE_INLINE Vector2 Vector2::zero() { |
nothing calls this directly
no outgoing calls
no test coverage detected