SimplifyGpencilModifier(GpencilModifier)¶
base classes — bpy_struct
, GpencilModifier
-
class
bpy.types.
SimplifyGpencilModifier
(GpencilModifier)¶ Simplify Stroke modifier
-
distance
¶ Distance between points
- Type
float in [0, inf], default 0.1
-
factor
¶ Factor of Simplify
- Type
float in [0, 100], default 0.0
-
invert_layer_pass
¶ Inverse filter
- Type
boolean, default False
-
invert_layers
¶ Inverse filter
- Type
boolean, default False
-
invert_material_pass
¶ Inverse filter
- Type
boolean, default False
-
invert_materials
¶ Inverse filter
- Type
boolean, default False
-
layer
¶ Layer name
- Type
string, default “”, (never None)
-
layer_pass
¶ Layer pass index
- Type
int in [0, 100], default 0
-
length
¶ Length of each segment
- Type
float in [0, inf], default 0.1
-
mode
¶ How to simplify the stroke
FIXED
Fixed, Delete alternating vertices in the stroke, except extremes.ADAPTIVE
Adaptive, Use a Ramer-Douglas-Peucker algorithm to simplify the stroke preserving main shape.SAMPLE
Sample, Re-sample the stroke with segments of the specified length.MERGE
Merge, Simplify the stroke by merging vertices closer than a given distance.
- Type
enum in [‘FIXED’, ‘ADAPTIVE’, ‘SAMPLE’, ‘MERGE’], default ‘FIXED’
-
pass_index
¶ Pass index
- Type
int in [0, 100], default 0
-
step
¶ Number of times to apply simplify
- Type
int in [1, 50], default 1
-
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