| 88 | } |
| 89 | |
| 90 | vec3 operator-(const vec3& rhs) const |
| 91 | { |
| 92 | vec3 result = {}; |
| 93 | result.x = x - rhs.x; |
| 94 | result.y = y - rhs.y; |
| 95 | result.z = z - rhs.z; |
| 96 | return result; |
| 97 | } |
| 98 | }; |
| 99 | |
| 100 | inline McDouble |
nothing calls this directly
no outgoing calls
no test coverage detected