trimesh_remesh_along_isoline
- trimesh_remesh_along_isoline(M, scalars, isovalue)[source]
Remesh a triangle mesh along an isoline.
- Parameters:
- Mtuple[list[list[float]], list[list[int]]]
A mesh represented by a tuple of (vertices, faces) where vertices are 3D points and faces are triangles
- scalarslist[float]
A scalar value per vertex.
- isovaluefloat
The value at which to compute the isoline.
- Returns:
- tuple[list[list[float]], list[list[int]], list[int]]
A tuple containing * the vertices of the remeshed mesh, * the faces of the remeshed mesh, * labels for the faces of the remeshed mesh.