| 70 | } |
| 71 | |
| 72 | static void xQuickCullCellMerge(xQCData* o, const xQCData* a, const xQCData* b) |
| 73 | { |
| 74 | o->xmin = MIN(a->xmin, b->xmin); |
| 75 | o->ymin = MIN(a->ymin, b->ymin); |
| 76 | o->zmin = MIN(a->zmin, b->zmin); |
| 77 | o->zmin_dup = o->zmin; |
| 78 | o->xmax = MAX(a->xmax, b->xmax); |
| 79 | o->ymax = MAX(a->ymax, b->ymax); |
| 80 | o->zmax = MAX(a->zmax, b->zmax); |
| 81 | o->zmax_dup = o->zmax; |
| 82 | } |
| 83 | |
| 84 | void xQuickCullForLine(xQCControl* ctrl, xQCData* q, const xLine3* ln) |
| 85 | { |
no outgoing calls
no test coverage detected