ScrewModifier(Modifier)
base classes — bpy_struct, Modifier
- class bpy.types.ScrewModifier(Modifier)
Revolve edges
- angle
Angle of revolution (in [-inf, inf], default 6.28319)
- Type:
float
- axis
Screw axis (default
'Z')- Type:
Literal[Axis Xyz Items]
- iterations
Number of times to apply the screw operation (in [1, 10000], default 1)
- Type:
int
- merge_threshold
Limit below which to merge vertices (in [0, inf], default 0.01)
- Type:
float
- render_steps
Number of steps in the revolution (in [1, 10000], default 16)
- Type:
int
- screw_offset
Offset the revolution along its axis (in [-inf, inf], default 0.0)
- Type:
float
- steps
Number of steps in the revolution (in [1, 10000], default 16)
- Type:
int
- use_merge_vertices
Merge adjacent vertices (screw offset must be zero) (default False)
- Type:
bool
- use_normal_calculate
Calculate the order of edges (needed for meshes, but not curves) (default False)
- Type:
bool
- use_normal_flip
Flip normals of lathed faces (default False)
- Type:
bool
- use_object_screw_offset
Use the distance between the objects to make a screw (default False)
- Type:
bool
- use_smooth_shade
Output faces with smooth shading rather than flat shaded (default True)
- Type:
bool
- use_stretch_u
Stretch the U coordinates between 0 and 1 when UVs are present (default False)
- Type:
bool
- use_stretch_v
Stretch the V coordinates between 0 and 1 when UVs are present (default False)
- Type:
bool
- 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