BooleanModifier(Modifier)

base classes — bpy_struct, Modifier

class bpy.types.BooleanModifier(Modifier)

Boolean operations modifier

debug_options

Debugging options, only when started with ‘-d’

Type

enum set in {‘SEPARATE’, ‘NO_DISSOLVE’, ‘NO_CONNECT_REGIONS’}, default {‘SEPARATE’}

double_threshold

Threshold for checking overlapping geometry

Type

float in [0, 1], default 0.0

object

Mesh object to use for Boolean operation

Type

Object

operation
  • INTERSECT Intersect, Keep the part of the mesh that intersects with the other selected object.

  • UNION Union, Combine two meshes in an additive way.

  • DIFFERENCE Difference, Combine two meshes in a subtractive way.

Type

enum in [‘INTERSECT’, ‘UNION’, ‘DIFFERENCE’], default ‘DIFFERENCE’

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.Struct subclass

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