Tagged Questions

9
votes
3answers
4k views

Broad phase collision detection - Quadtrees, BSP, etc

Collision detection is naturally an O(n^2) problem. You have a bunch of objects and you need to check if that object is colliding with every other object. Right now that is my naive approach and ...