MirrorModifier(Modifier)
base classes — bpy_struct, Modifier
- class bpy.types.MirrorModifier(Modifier)
Mirroring modifier
- bisect_threshold
Distance from the bisect plane within which vertices are removed (in [0, inf], default 0.001)
- Type:
float
- merge_threshold
Distance within which mirrored vertices are merged (in [0, inf], default 0.001)
- Type:
float
- mirror_offset_u
Amount to offset mirrored UVs flipping point from the 0.5 on the U axis (in [-1, 1], default 0.0)
- Type:
float
- mirror_offset_v
Amount to offset mirrored UVs flipping point from the 0.5 point on the V axis (in [-1, 1], default 0.0)
- Type:
float
- offset_u
Mirrored UV offset on the U axis (in [-10000, 10000], default 0.0)
- Type:
float
- offset_v
Mirrored UV offset on the V axis (in [-10000, 10000], default 0.0)
- Type:
float
- use_axis
Enable axis mirror (array of 3 items, default (False, False, False))
- Type:
bpy_prop_array[bool]
- use_bisect_axis
Cuts the mesh across the mirror plane (array of 3 items, default (False, False, False))
- Type:
bpy_prop_array[bool]
- use_bisect_flip_axis
Flips the direction of the slice (array of 3 items, default (False, False, False))
- Type:
bpy_prop_array[bool]
- use_clip
Prevent vertices from going through the mirror during transform (default False)
- Type:
bool
- use_mirror_merge
Merge vertices within the merge threshold (default True)
- Type:
bool
- use_mirror_u
Mirror the U texture coordinate around the flip offset point (default False)
- Type:
bool
- use_mirror_udim
Mirror the texture coordinate around each tile center (default False)
- Type:
bool
- use_mirror_v
Mirror the V texture coordinate around the flip offset point (default False)
- Type:
bool
- use_mirror_vertex_groups
Mirror vertex groups (e.g. .R->.L) (default True)
- Type:
bool
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type