RemeshModifier(Modifier)
base classes — bpy_struct
, Modifier
- class bpy.types.RemeshModifier(Modifier)
Generate a new surface with regular topology that follows the shape of the input mesh
- adaptivity
Reduces the final face count by simplifying geometry where detail is not needed, generating triangles. A value greater than 0 disables Fix Poles
- Type
float in [-inf, inf], default 0.0
- mode
BLOCKS
Blocks – Output a blocky surface with no smoothing.SMOOTH
Smooth – Output a smooth surface with no sharp-features detection.SHARP
Sharp – Output a surface that reproduces sharp edges and corners from the input mesh.VOXEL
Voxel – Output a mesh corresponding to the volume of the original mesh.
- Type
enum in [‘BLOCKS’, ‘SMOOTH’, ‘SHARP’, ‘VOXEL’], default ‘VOXEL’
- octree_depth
Resolution of the octree; higher values give finer details
- Type
int in [1, 24], default 4
- scale
The ratio of the largest dimension of the model over the size of the grid
- Type
float in [0, 0.99], default 0.9
- sharpness
Tolerance for outliers; lower values filter noise while higher values will reproduce edges closer to the input
- Type
float in [-inf, inf], default 1.0
- threshold
If removing disconnected pieces, minimum size of components to preserve as a ratio of the number of polygons in the largest component
- Type
float in [0, 1], default 1.0
- use_remove_disconnected
- Type
boolean, default True
- use_smooth_shade
Output faces with smooth shading rather than flat shaded
- Type
boolean, default False
- voxel_size
Size of the voxel in object space used for volume evaluation. Lower values preserve finer details
- Type
float in [0.0001, inf], default 0.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