Return the integer data of leaf node of the dynamic AABB tree
| 338 | |
| 339 | // Return the integer data of leaf node of the dynamic AABB tree |
| 340 | int32 TriangleMesh::getDynamicAABBTreeNodeDataInt(int32 nodeID) const { |
| 341 | return mDynamicAABBTree.getNodeDataInt(nodeID); |
| 342 | } |
| 343 | |
| 344 | // Ray casting method |
| 345 | void TriangleMesh::raycast(const Ray& ray, DynamicAABBTreeRaycastCallback& callback) const { |
no test coverage detected