| 137 | } |
| 138 | |
| 139 | bool Float2::operator==(const Float2& other) const |
| 140 | { |
| 141 | return x == other.x && y == other.y; |
| 142 | } |
| 143 | |
| 144 | bool Float2::operator!=(const Float2& other) const |
| 145 | { |
nothing calls this directly
no outgoing calls
no test coverage detected