mesh_weld
- compas.datastructures.mesh_weld(mesh, precision=None, cls=None)[source]
Weld vertices of a mesh within some precision distance.
- Parameters
mesh (
compas.datastructures.Mesh
) – A mesh.precision (str, optional) – Tolerance distance for welding.
cls (Type[
compas.datastructures.Mesh
], optional) – Type of the welded mesh. This defaults to the type of the first mesh in the list.
- Returns
compas.datastructures.Mesh
– The welded mesh.