| 69 | } |
| 70 | |
| 71 | Float2 Float2::operator-(const Float2& other) const |
| 72 | { |
| 73 | Float2 result; |
| 74 | result.x = x - other.x; |
| 75 | result.y = y - other.y; |
| 76 | return result; |
| 77 | } |
| 78 | |
| 79 | Float2& Float2::operator*=(const Float2& other) |
| 80 | { |
nothing calls this directly
no outgoing calls
no test coverage detected