mirror_mesh_model
Mirrors a 3D mesh along an axis to create a symmetrical copy. Corrects triangle winding to preserve normals.
Instructions
Mirror (reflect) a mesh along an axis.
Creates a mirror image by negating coordinates on the chosen axis
and reversing triangle winding order to preserve correct normals.
:param file_path: Path to the STL file.
:param axis: Axis to mirror ("x", "y", or "z", default "x").
:param output_path: Output path (defaults to overwriting input).
:returns: Dict with mirror info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| axis | No | x | |
| file_path | Yes | ||
| output_path | No |