| 137 | } |
| 138 | |
| 139 | inline Vec3f cross(const Vec3f* a, const Vec3f* b) |
| 140 | { |
| 141 | return { a->y*b->z - a->z*b->y, a->z*b->x - a->x*b->z, a->x*b->y - a->y*b->x }; |
| 142 | } |
| 143 | |
| 144 | inline f32 planeDist(const Vec4f* plane, const Vec3f* pos) |
| 145 | { |
no outgoing calls
no test coverage detected