From d7f01a75f1716ecfd3b4934275b1e14890eaa924 Mon Sep 17 00:00:00 2001 From: jfa Date: Mon, 28 Aug 2006 15:19:21 +0000 Subject: [PATCH] Correct ChangeOrientationShellCopy method to really make a copy of an object. --- src/GEOM_SWIG/geompy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GEOM_SWIG/geompy.py b/src/GEOM_SWIG/geompy.py index 318f667ab..13ae95986 100644 --- a/src/GEOM_SWIG/geompy.py +++ b/src/GEOM_SWIG/geompy.py @@ -1211,7 +1211,7 @@ def ChangeOrientationShell(theObject): # @param theObject Shape to be processed. # @return New GEOM_Object, containing processed shape. def ChangeOrientationShellCopy(theObject): - anObj = HealOp.ChangeOrientation(theObject) + anObj = HealOp.ChangeOrientationCopy(theObject) if HealOp.IsDone() == 0: print "ChangeOrientation : ", HealOp.GetErrorCode() return anObj -- 2.39.2