mirror_mesh_model
Mirror a 3D mesh along the X, Y, or Z axis. Reverses triangle winding to preserve correct normals, outputting to a new STL file or overwriting the original.
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 |