I am trying to find a convex hull command for a Graphics3D object. Does it exist in Mathematica?
egg = Graphics3D[Cuboid /@ Position[DiskMatrix[{12, 10, 8}], 1]]

The ConvexHull command of the "ComputationalGeometry`" package does not work on 3D objects:
Needs["ComputationalGeometry`"]
ConvexHull[egg]





ConvexHullshows the syntax:ConvexHull[{{x1,y1},{x2,y2},...}]no z coordinate implies that its 2D (x,y) only. SearchingConvexHullin the documentation doesn't appear to simply direct you toTetGenLinkunfortunately. I just knew about it. – s0rce Mar 22 '13 at 15:31Positiondoesn't seem to return anything for me. None of the statements are1they areCuboid[{_,_,_}]– s0rce Mar 22 '13 at 15:57ConvexHullthat the TetGenLink example is found. Thanks. – Mar 24 '13 at 09:12