CorrectiveSmoothModifier(Modifier)
base classes — bpy_struct, Modifier
- class bpy.types.CorrectiveSmoothModifier(Modifier)
Correct distortion caused by deformation
- factor
Smooth effect factor (in [-inf, inf], default 0.5)
- Type:
float
- invert_vertex_group
Invert vertex group influence (default False)
- Type:
bool
- is_bind
(default False, readonly)
- Type:
bool
- iterations
(in [0, 32767], default 5)
- Type:
int
- rest_source
Select the source of rest positions (default
'ORCO')ORCOOriginal Coords – Use base mesh vertex coordinates as the rest position.BINDBind Coords – Use bind vertex coordinates for rest position.
- Type:
Literal[‘ORCO’, ‘BIND’]
- scale
Compensate for scale applied by other modifiers (in [-inf, inf], default 1.0)
- Type:
float
- smooth_type
Method used for smoothing (default
'SIMPLE')SIMPLESimple – Use the average of adjacent edge-vertices.LENGTH_WEIGHTEDLength Weight – Use the average of adjacent edge-vertices weighted by their length.
- Type:
Literal[‘SIMPLE’, ‘LENGTH_WEIGHTED’]
- use_only_smooth
Apply smoothing without reconstructing the surface (default False)
- Type:
bool
- use_pin_boundary
Excludes boundary vertices from being smoothed (default False)
- Type:
bool
- vertex_group
Name of Vertex Group which determines influence of modifier per point (default “”, never None)
- Type:
str
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- 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.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type