diff --git a/cadquery/freecad_impl/shapes.py b/cadquery/freecad_impl/shapes.py index 16814ba..a78443c 100644 --- a/cadquery/freecad_impl/shapes.py +++ b/cadquery/freecad_impl/shapes.py @@ -185,7 +185,7 @@ class Shape(object): return self.wrapped.isValid() def BoundingBox(self, tolerance=0.1): - self.wrapped.tessellate(tolerance) + self.wrapped.tessellate(tolerance) return BoundBox(self.wrapped.BoundBox) def mirror(self, mirrorPlane="XY", basePointVector=(0, 0, 0)):