From 0aba11650589f311f743c636bb758d858aa8b22f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hasan=20Yavuz=20=C3=96ZDERYA?= Date: Tue, 1 Sep 2015 21:56:22 +0300 Subject: [PATCH] added dummy `clean()` methods for Wire and Compound types --- cadquery/freecad_impl/shapes.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cadquery/freecad_impl/shapes.py b/cadquery/freecad_impl/shapes.py index f5bad41..9b149fd 100644 --- a/cadquery/freecad_impl/shapes.py +++ b/cadquery/freecad_impl/shapes.py @@ -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