CorrectiveSmoothModifier(Modifier)

base classes — bpy_struct, Modifier

class bpy.types.CorrectiveSmoothModifier(Modifier)

Correct distortion caused by deformation

factor

Smooth factor effect

Type

float in [-inf, inf], default 0.0

invert_vertex_group

Invert vertex group influence

Type

boolean, default False

is_bind
Type

boolean, default False, (readonly)

iterations
Type

int in [-32768, 32767], default 0

rest_source

Select the source of rest positions

  • ORCO Original Coords, Use base mesh vert coords as the rest position.

  • BIND Bind Coords, Use bind vert coords for rest position.

Type

enum in [‘ORCO’, ‘BIND’], default ‘ORCO’

scale

Compensate for scale applied by other modifiers

Type

float in [-inf, inf], default 0.0

smooth_type

Method used for smoothing

  • SIMPLE Simple, Use the average of adjacent edge-vertices.

  • LENGTH_WEIGHTED Length Weight, Use the average of adjacent edge-vertices weighted by their length.

Type

enum in [‘SIMPLE’, ‘LENGTH_WEIGHTED’], default ‘SIMPLE’

use_only_smooth

Apply smoothing without reconstructing the surface

Type

boolean, default False

use_pin_boundary

Excludes boundary vertices from being smoothed

Type

boolean, default False

vertex_group

Name of Vertex Group which determines influence of modifier per point

Type

string, default “”, (never None)

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