| 101 | } |
| 102 | |
| 103 | vec2 operator-(const vec2& rhs) const |
| 104 | { |
| 105 | vec2 result = {{0.0, 0.0}}; |
| 106 | result.x = x - rhs.x; |
| 107 | result.y = y - rhs.y; |
| 108 | return result; |
| 109 | } |
| 110 | }; |
| 111 | |
| 112 |
nothing calls this directly
no outgoing calls
no test coverage detected