Compute the height of the tree
| 822 | |
| 823 | // Compute the height of the tree |
| 824 | int DynamicAABBTree::computeHeight() { |
| 825 | return computeHeight(mRootNodeID); |
| 826 | } |
| 827 | |
| 828 | // Compute the height of a given node in the tree |
| 829 | int DynamicAABBTree::computeHeight(int32 nodeID) { |