Convex hull collision detection with penetration depth

Started by
1 comment, last by Zakwayda 18 years, 4 months ago
Anyone have links to open-source convex hull collision detection with penetration depth?
Advertisement
http://www.cs.unc.edu/~geom/DEEP/
Erinhttp://gphysics.com
You might also try the free version of SOLID, which uses GJK to compute static intersection information, and presumably handles arbitrary convex hulls (although I can't say that for sure). Static intersection with penetration depth is fairly easy to code yourself using the separating axis theorem; unfortunately, the SAT doesn't scale well for arbitrary convex polytopes so may not be a viable solution. A Minkowski-based solution such as GJK or the paper nire linked to would probably be preferable.

This topic is closed to new replies.

Advertisement