| 144 | } |
| 145 | |
| 146 | vec3 operator-(const vec3& rhs) const |
| 147 | { |
| 148 | vec3 result = {{0.0, 0.0, 0.0}}; |
| 149 | result.x = x - rhs.x; |
| 150 | result.y = y - rhs.y; |
| 151 | result.z = z - rhs.z; |
| 152 | return result; |
| 153 | } |
| 154 | }; |
| 155 | |
| 156 | std::string resolve_cc_name_string(McContext context, |
nothing calls this directly
no outgoing calls
no test coverage detected