boolean_union_mesh_mesh

compas_rhino.geometry.booleans.boolean_union_mesh_mesh(A, B, remesh=False)[source]

Compute the boolean union of two triangle meshes.

Parameters
  • A (tuple) – The vertices and faces of mesh A.

  • B (tuple) – The vertices and faces of mesh B.

  • remesh (bool, optional) – Remesh the result if True. Default is False.

Returns

tuple – The vertices and the faces of the boolean union.