| 88 | friend Vector2 operator/(float f, const Vector2 &v) { return Vector2(f / v.x, f / v.y); } |
| 89 | |
| 90 | bool operator==(const Vector2 &v) const { return x == v.x && y == v.y; } |
| 91 | bool operator!=(const Vector2 &v) const { return x != v.x || y != v.y; } |
| 92 | |
| 93 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected