diff --git a/cadquery/occ_impl/exporters.py b/cadquery/occ_impl/exporters.py index 175f2ae7..fb6e720d 100644 --- a/cadquery/occ_impl/exporters.py +++ b/cadquery/occ_impl/exporters.py @@ -105,7 +105,7 @@ def exportShape(shape, exportType, fileLike, tolerance=0.1): if exportType == ExportTypes.STEP: shape.exportStep(outFileName) elif exportType == ExportTypes.STL: - shape.exportStl(outFileName) + shape.exportStl(outFileName, tolerance) else: raise ValueError("No idea how i got here")