added clean parameter to sphere() API, although it's not supported by FreeCAD implementation

This commit is contained in:
hyOzd 2015-08-06 23:00:43 +03:00
parent 935f6e1da9
commit d7d1e5ee7b

View File

@ -2307,7 +2307,7 @@ class Workplane(CQ):
return self.union(boxes, clean=clean)
def sphere(self, radius, direct=(0, 0, 1), angle1=-90, angle2=90, angle3=360,
centered=(True, True, True), combine=True):
centered=(True, True, True), combine=True, clean=True):
"""
Returns a 3D sphere with the specified radius for each point on the stack
@ -2373,7 +2373,7 @@ class Workplane(CQ):
if not combine:
return spheres
else:
return self.union(spheres)
return self.union(spheres, clean=clean)
def clean(self):
"""