I have a convex hull (generated from a library) in 3D. I only have the vertices. How do I compute the volume of the hull.

516 Views Asked by At

I have a library (quickhull in C++) that I am using to create a hull from a set of points. I am able to see the vertices of the hull but not the facets. I would like to compute the volume of the hull. What is the best way to do this?