I´m thinking about ways to use SAT (“Separating axis theorem”) and when and how it´s useful. Since the test check every possible non-collision (and if there isn´t one, there has to be a collision), it´s hard to get any information. We just know “there is a collision” and how deep the objects are intersecting. Now, say I want to get a physical collision respons and bounce two objects against each other, I would have to resort to additional test, for example a line segment intersection test, get a normal and then a reflection vector… But I can do this without resorting to a SAT test first…?
So basically I´m wondering: Is SAT useful in cases where the collision respons require more information than a “minimum translation vector”? If it is, am I missing something or do you resort to additional test, like “line segment intersection” test?