Updating the CadQuery library.

This commit is contained in:
Jeremy Mack Wright 2015-09-01 15:35:30 -04:00
parent 9201871e37
commit fd4a90ce3a
2 changed files with 12 additions and 6 deletions

View File

@ -2409,9 +2409,8 @@ class Workplane(CQ):
`clean` may fail to produce a clean output in some cases such as
spherical faces.
"""
solidRef = self.findSolid(searchStack=True, searchParents=True)
if solidRef:
t = solidRef.clean()
return self.newObject([t])
else:
raise ValueError("There is no solid to clean!")
try:
cleanObjects = [obj.clean() for obj in self.objects]
except AttributeError:
raise AttributeError("%s object doesn't support `clean()` method!" % obj.ShapeType())
return self.newObject(cleanObjects)

View File

@ -481,6 +481,9 @@ class Wire(Shape):
"""
return Wire(FreeCADPart.makeHelix(pitch, height, radius, angle))
def clean(self):
"""This method is not implemented yet."""
return self
class Face(Shape):
def __init__(self, obj):
@ -882,3 +885,7 @@ class Compound(Shape):
def tessellate(self, tolerance):
return self.wrapped.tessellate(tolerance)
def clean(self):
"""This method is not implemented yet."""
return self