Simplify meshes

Any algorithm to merge meshes coplanar faces. I am searching for something like the Rhino command MergeAllCoplanarFaces?

trimesh has a similar function:
https://trimsh.org/trimesh.base.html?highlight=facet#trimesh.base.Trimesh.facets

I haven’t tested but maybe compas trimesh has implemented this feature as well.

there is a method for merging faces on the mesh data structure, and there is a function for checking if a set of points is coplanar, but unfortunately there is no “merge_coplanar_faces”.

this would be an excellent candidate for a feature request :slight_smile:

1 Like