I have 20 to 30 randomly generated 3D points as vertices from which a polyhedron is defined. I have tried using DelaunayTri(points)
to enumerate the facets and use the determinant of the cross product to calculate and sum the tetrahedral volumes, but I'm not sure it works fine for polyhedra which are not convex.
Another possible approach would be to partition the concave polyhedron into convex ones (by detecting points which are inside the convex hull), but an algorithm for such disjoint partitioning eludes me.
Also, how would one plot such a concave hull?
alphaShape
is similar toconvhull
, but more general. It will create non-convex shapes.Sample point cloud:
Alpha shape plot:
Volume of alpha shape:
Another method to indicate other points inside the shape (in green):