BooleanModifier(Modifier)¶
base classes — bpy_struct, Modifier
-
class
bpy.types.BooleanModifier(Modifier)¶ Boolean operations modifier
-
double_threshold¶ Threshold for checking overlapping geometry
Type: float in [0, 1], default 0.0
-
operation¶ INTERSECTIntersect, Keep the part of the mesh that intersects with the other selected object.UNIONUnion, Combine two meshes in an additive way.DIFFERENCEDifference, Combine two meshes in a subtractive way.
Type: enum in [‘INTERSECT’, ‘UNION’, ‘DIFFERENCE’], default ‘INTERSECT’
-
solver¶ BMESHBMesh, Use the BMesh boolean solver.CARVECarve, Use the Carve boolean solver.
Type: enum in [‘BMESH’, ‘CARVE’], default ‘CARVE’
-
Inherited Properties
Inherited Functions