BooleanModifier(Modifier)¶
base classes — bpy_struct, Modifier
-
class
bpy.types.BooleanModifier(Modifier)¶ Boolean operations modifier
-
collection¶ Use mesh objects in this collection for Boolean operation
- Type
-
debug_options¶ Debugging options, only when started with ‘-d’
- Type
enum set in {‘SEPARATE’, ‘NO_DISSOLVE’, ‘NO_CONNECT_REGIONS’}, default {}
-
double_threshold¶ Threshold for checking overlapping geometry
- Type
float in [0, 1], default 1e-06
-
operand_type¶ OBJECTObject, Use a mesh object as the operand for the Boolean operation.COLLECTIONCollection, Use a collection of mesh objects as the operand for the Boolean operation.
- Type
enum in [‘OBJECT’, ‘COLLECTION’], default ‘OBJECT’
-
operation¶ INTERSECTIntersect, Keep the part of the mesh that is common between all operands.UNIONUnion, Combine meshes in an additive way.DIFFERENCEDifference, Combine meshes in a subtractive way.
- Type
enum in [‘INTERSECT’, ‘UNION’, ‘DIFFERENCE’], default ‘DIFFERENCE’
-
solver¶ Method for calculating booleans
FASTFast, Simple solver for the best performance, without support for overlapping geometry.EXACTExact, Advanced solver for the best result.
- Type
enum in [‘FAST’, ‘EXACT’], default ‘EXACT’
-
use_hole_tolerant¶ Better results when there are holes (slower)
- Type
boolean, default False
-
use_self¶ Allow self-intersection in operands
- Type
boolean, default False
-
classmethod
bl_rna_get_subclass(id, default=None)¶ - Parameters
id (string) – The RNA type identifier.
- Returns
The RNA type or default when not found.
- Return type
bpy.types.Structsubclass
-
classmethod
bl_rna_get_subclass_py(id, default=None)¶ - Parameters
id (string) – The RNA type identifier.
- Returns
The class or default when not found.
- Return type
type
-
Inherited Properties
Inherited Functions