////////////////////////////////////////////////////////////////////
| 145 | |
| 146 | ///////////////////////////////////////////////////////////////////////// |
| 147 | PX_FORCE_INLINE PxU32 RTreePage::nodeCount() const |
| 148 | { |
| 149 | for (int j = 0; j < RTREE_N; j ++) |
| 150 | if (minx[j] == MX) |
| 151 | return PxU32(j); |
| 152 | |
| 153 | return RTREE_N; |
| 154 | } |
| 155 | |
| 156 | ///////////////////////////////////////////////////////////////////////// |
| 157 | PX_FORCE_INLINE void RTreePage::clearNode(PxU32 nodeIndex) |
no outgoing calls
no test coverage detected