Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
9answers
3k views

Broad-phase collision detection methods?

I'm building a 2D physics engine and I want to add broad-phase collision detection, though I only know of 2 or 3 types: Check everything against everything else (O(n^2) complexity) Sweep and Prune ...
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 ...