////////////////////////////////////////////////////////////////////
| 164 | |
| 165 | ///////////////////////////////////////////////////////////////////////// |
| 166 | PX_FORCE_INLINE void RTreePage::getNode(const PxU32 nodeIndex, RTreeNodeQ& r) const |
| 167 | { |
| 168 | PX_ASSERT(nodeIndex < RTREE_N); |
| 169 | r.minx = minx[nodeIndex]; |
| 170 | r.miny = miny[nodeIndex]; |
| 171 | r.minz = minz[nodeIndex]; |
| 172 | r.maxx = maxx[nodeIndex]; |
| 173 | r.maxy = maxy[nodeIndex]; |
| 174 | r.maxz = maxz[nodeIndex]; |
| 175 | r.ptr = ptrs[nodeIndex]; |
| 176 | } |
| 177 | |
| 178 | ///////////////////////////////////////////////////////////////////////// |
| 179 | PX_FORCE_INLINE void RTreePage::setEmpty(PxU32 startIndex) |
no outgoing calls
no test coverage detected