I am writing some code that utilizes the TetGen library to find the convex hull of a set of points. However, by default
tetrahedralize("Q", &in, &temp);
generates both the convex hull and the 3D Delaunay tetrahedralization. I am inclined to believe that it is possible to get only the convex hull as Mathematica has a working implementation of Tetgen and a corresponding function TetGenConvexHull[]
that does so, but after going through the tetgen.cxx
source code and documentation, I can't seem to find out how.
How can I modify the default behaviour of TetGen to only get the convex hull?