| 36 | } |
| 37 | |
| 38 | S32 xQuickCullIsects(const xQCData* a, const xQCData* b) |
| 39 | { |
| 40 | return a->xmin <= b->xmax && a->ymin <= b->ymax && a->zmin <= b->zmax && b->xmin <= a->xmax && |
| 41 | b->ymin <= a->ymax && b->zmin <= a->zmax; |
| 42 | } |
| 43 | |
| 44 | void xQuickCullForBound(xQCControl* ctrl, xQCData* q, const xBound* b) |
| 45 | { |
no outgoing calls
no test coverage detected