How to find convex hull in a 3 dimensional space

Implementing the 3D convex hull is not easy, but many algorithms have been implemented, and code is widely available. At the high end of quality and time investment to use is CGAL. At the lower end on both measures is my own C code:

     DCG Cover
In between there is code all over the web, including this implementation of QuickHull.

Leave a Comment