From 9d9b6d310e67dc50616cb81f7ede2500fd4cddcf Mon Sep 17 00:00:00 2001 From: Simon Huskier Date: Wed, 20 Jan 2016 17:01:14 +0800 Subject: [PATCH] Small format fix for function BoundingBox in shapes.py...... --- cadquery/freecad_impl/shapes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)):