| 54 | } |
| 55 | |
| 56 | Float2 Float2::operator+(const Float2& other) const |
| 57 | { |
| 58 | Float2 result; |
| 59 | result.x = x + other.x; |
| 60 | result.y = y + other.y; |
| 61 | return result; |
| 62 | } |
| 63 | |
| 64 | Float2& Float2::operator-=(const Float2& other) |
| 65 | { |
nothing calls this directly
no outgoing calls
no test coverage detected