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. (in [-inf, inf], default 0.0)

Type:

float

mode

(default 'VOXEL')

  • 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:

Literal[‘BLOCKS’, ‘SMOOTH’, ‘SHARP’, ‘VOXEL’]

octree_depth

Resolution of the octree; higher values give finer details (in [1, 24], default 4)

Type:

int

scale

The ratio of the largest dimension of the model over the size of the grid (in [0, 0.99], default 0.9)

Type:

float

sharpness

Tolerance for outliers; lower values filter noise while higher values will reproduce edges closer to the input (in [-inf, inf], default 1.0)

Type:

float

threshold

If removing disconnected pieces, minimum size of components to preserve as a ratio of the number of polygons in the largest component (in [0, 1], default 1.0)

Type:

float

use_remove_disconnected

(default True)

Type:

bool

use_smooth_shade

Output faces with smooth shading rather than flat shaded (default False)

Type:

bool

voxel_size

Size of the voxel in object space used for volume evaluation. Lower values preserve finer details. (in [0, inf], default 0.1)

Type:

float

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:

bpy.types.Struct

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

Inherited Properties

Inherited Functions