There are many ways of doing it, with spheres, hit boxes, per triangle, ray casting etc.
BUT, let's say we're going to use a sphere or a hit box (per triangle is slow, rays doesn't always cut it).
The size we would create this sphere or box would be completely unknown.
What we could do, is go through each triangle and look for the smallest and largest value of each vertex, but then this will probably take much longer than handling the collision itself.

Is there some standard way of dealing with this, or any advice on how to tackle such a problem?
Thanks!
