}
//Make a Python command
- GEOM::TPythonDump(aFunction) << "geompy.ChangeOrientation("
+ GEOM::TPythonDump(aFunction) << "geompy.ChangeOrientationShell("
<< theObject << ")";
SetErrorCode(OK);
}
//Make a Python command
- GEOM::TPythonDump(aFunction) << aNewObject << " = geompy.ChangeOrientationCopy("
+ GEOM::TPythonDump(aFunction) << aNewObject << " = geompy.ChangeOrientationShellCopy("
<< theObject << ")";
SetErrorCode(OK);
## Change orientation of the given object.
# @param theObject Shape to be processed.
# @update given shape
-def ChangeOrientation(theObject):
+def ChangeOrientationShell(theObject):
theObject = HealOp.ChangeOrientation(theObject)
if HealOp.IsDone() == 0:
print "ChangeOrientation : ", HealOp.GetErrorCode()
## Change orientation of the given object.
# @param theObject Shape to be processed.
# @return New GEOM_Object, containing processed shape.
-def ChangeOrientationCopy(theObject):
+def ChangeOrientationShellCopy(theObject):
anObj = HealOp.ChangeOrientation(theObject)
if HealOp.IsDone() == 0:
print "ChangeOrientation : ", HealOp.GetErrorCode()