added dummy clean() methods for Wire and Compound types

This commit is contained in:
Hasan Yavuz ÖZDERYA 2015-09-01 21:56:22 +03:00
parent 9da3ea3c9f
commit 0aba116505

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