predict_print_failure
Analyzes 3D mesh geometry to predict print failures like thin walls, long bridges, and overhangs, providing a risk score and fix suggestions.
Instructions
Predict common 3D printing failure modes from mesh geometry.
Analyzes the mesh for thin walls, long unsupported bridges,
severe overhangs, top-heavy geometry, small features, and
non-manifold issues. Returns a risk score (0-100) and
per-failure details with fix suggestions.
:param file_path: Path to mesh file (.stl, .obj, or .glb).
:param min_wall_mm: Minimum printable wall thickness (default 0.8).
:param max_bridge_mm: Maximum unsupported bridge length (default 15).
:param max_overhang_deg: Maximum overhang angle before failure (default 55).
:returns: Dict with verdict, risk score, and failure list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| min_wall_mm | No | ||
| max_bridge_mm | No | ||
| max_overhang_deg | No |