mesh_skeleton

compas_cgal.skeletonization.mesh_skeleton(mesh)[source]

Compute the geometric skeleton of a triangle mesh using mean curvature flow.

Parameters:
meshVerticesFaces

A tuple containing: * vertices: Nx3 array of vertex coordinates * faces: Mx3 array of vertex indices

Returns:
PolylinesNumpySkeleton

List of polylines representing the skeleton edges. Each polyline is a tuple of start and end point coordinates.

Raises:
TypeError

If the input mesh is not a tuple of vertices and faces.

ValueError

If the vertices array is not Nx3. If the faces array is not Mx3. If the face indices are out of range. If the mesh is not manifold and closed.

RuntimeError

If the mesh contraction fails to converge.

Notes

The input mesh must be manifold and closed. The skeleton is computed using mean curvature flow.