pub fn convex_hull_as_points<'a, T: BorrowedBuffer<'a>>(
buffer: &'a T,
) -> Vec<usize>
Expand description
Convex Hull generation as points Returns the convex hull as an unsorted vector that contains the indices the points forming a convex hull around all input points.
#Panics
If the PointBuffer doesn’t cointain a POSITION_3D attribute.