| 256 | } |
| 257 | |
| 258 | bool IsDifferentEnough(const vec3 &a, const vec3 &b) { |
| 259 | bool same = true; |
| 260 | for (int i = 0; i < 3; ++i) { |
| 261 | if (fabs(a[i] - b[i]) > 0.0001) { |
| 262 | same = false; |
| 263 | } |
| 264 | } |
| 265 | return !same; |
| 266 | } |
| 267 | |
| 268 | bool IsDifferentEnough(const quaternion &a, const quaternion &b) { |
| 269 | bool same = true; |
no outgoing calls
no test coverage detected