Small format fix for function BoundingBox in shapes.py......

This commit is contained in:
Simon Huskier 2016-01-20 17:01:14 +08:00
parent 7225d84905
commit 9d9b6d310e

View File

@ -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)):