thicken_mesh_walls
Offset vertices outward along averaged normals to thicken thin walls in a 3D mesh. Use after detecting thin-wall regions to fix geometry without regenerating the mesh.
Instructions
Thicken thin walls in a mesh by offsetting vertices outward.
Detects thin-wall regions and pushes vertices outward along their
averaged normals. This is a **geometry-level fix** -- the mesh is
surgically modified instead of regenerating from scratch.
Use after ``predict_print_failures()`` detects ``thin_walls`` or
after ``design_scorecard()`` flags wall thickness issues.
:param file_path: Path to the STL file.
:param amount_mm: Offset distance in mm (default 0.5).
:param output_path: Output path (defaults to ``<name>_thickened.stl``).
:returns: Dict with number of vertices modified, amounts, and output path.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount_mm | No | ||
| file_path | Yes | ||
| output_path | No |