Polyhedron.boolean_difference

Polyhedron.boolean_difference(other)[source]

Compute the boolean difference of this polyhedron and another.

Parameters:
othercompas.geometry.Polyhedron

The polyhedron to subtract.

Returns:
compas.geometry.Polyhedron

The resulting polyhedron.

Examples

>>> from compas.geometry import Box, Sphere
>>> A = Box(size=2).to_polyhedron()
>>> B = Sphere(point=[1, 1, 1], radius=1.0).to_polyhedron(u=16)
>>> C = A.boolean_difference(B)