* Add two vectors (v1 + v2) */
| 56 | * Add two vectors (v1 + v2) |
| 57 | */ |
| 58 | Vector2 operator+(const ::Vector2& vector2) const { return Vector2Add(*this, vector2); } |
| 59 | |
| 60 | /** |
| 61 | * Add two vectors (v1 + v2) |
nothing calls this directly
no outgoing calls
no test coverage detected