chull

convex hull from points

pip install chull
chull.make_hull(points: Vertices[N, 3]) Tuple[Vertices[N, 3], Normals[N, 3]]

Returns vertices and normals suitable for rendering.

points = np.array([
    ...
])

vertices, normals = chull.make_hull(points)