1) Find sets of objects that are possibly in contact (coarse or broad-phase collision detection).
2) Check if objects are actually in contact (fine or narrow-phase collision detection).
1) It should be conservative (may include false positives but mustn't include false negatives).
2) It should generate a list of possible collisions as small as possible.
3) It should be as fast as possible.
A bounding volume (usually a sphere or a box) is an area known to contain all of an object.
It is used for broad-phase collision detection, but is sufficient if all your objects are sphere or box shaped.
class BoundingSphere {
center;
radius;
constructor(){
// ...
}
}
class BoundingBox {
center;
halfSize;
constructor(){
// ...
}
}
Skipped hierarchy implementation (p.290-321), as I consider it a premature optimization. Feel free to implement it afterwards.