Return the world-space AABB of a given collider
| 1960 | |
| 1961 | // Return the world-space AABB of a given collider |
| 1962 | const AABB CollisionDetectionSystem::getWorldAABB(const Collider* collider) const { |
| 1963 | assert(collider->getBroadPhaseId() > -1); |
| 1964 | return mBroadPhaseSystem.getFatAABB(collider->getBroadPhaseId()); |
| 1965 | } |
nothing calls this directly
no test coverage detected