I am given a bunch of points in 3D-space and want to analyze their convex hull. What I am interested in is what kinds of polygons appear on the surface of the convex hull (probably mostly triangles, but maybe there are also quadrilaterals, etc). To get a picture of this, I tried to plot it in Matlab, but I was not able to compute the polygons that form the surface. The best I could do is to plot the surface triangulated (using "convhull").
Does anyone know whether it is possible to compute the polygons and not just get the surface triangulated? I fear that it is not possible; if not, is there an alternative plotting software that might be able to do this?
Edit: Following John's answer below, I finally got a solution to this problem. Basically, I use "convhull" to get the convex hull as a triangulated surface, then I compute the face normals (using "faceNormals") and use them to color all triangles with the same normals in the same color.