boolean_intersection_mesh_mesh
- compas_blender.geometry.boolean_intersection_mesh_mesh(A, B, remesh=False)[source]
Compute the boolean intersection of two triangle meshes.
- Parameters:
- Atuple[sequence[[float, float, foat],
compas.geometry.Point
], sequence[[int, int, int]]] The vertices and faces of mesh A.
- Btuple[sequence[[float, float, foat],
compas.geometry.Point
], sequence[[int, int, int]]] The vertices and faces of mesh B.
- remeshbool, optional
If True, remesh the result.
- Atuple[sequence[[float, float, foat],
- Returns:
- tuple[list[[float, float, foat]], list[[int, int, int]]]
The vertices and the faces of the boolean intersection.