From: spo Date: Fri, 17 Jun 2016 11:48:31 +0000 (+0300) Subject: Fix model.services.defaultPlane() X-Git-Tag: V_2.4.0~91^2~6 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=03969f4f2e091835bcbc960a0e60b59e393529db;p=modules%2Fshaper.git Fix model.services.defaultPlane() --- diff --git a/src/PythonAPI/model/services.py b/src/PythonAPI/model/services.py index 593505f56..9fcbe3c74 100644 --- a/src/PythonAPI/model/services.py +++ b/src/PythonAPI/model/services.py @@ -43,7 +43,7 @@ def defaultPlane (name): n = GeomAPI.GeomAPI_Dir(1, 0, 0) x = GeomAPI.GeomAPI_Dir(0, 1, 0) - return GeomAPI.GeomAPI_Ax3(o, n, x) + return GeomAPI.GeomAPI_Ax3(o, x, n) def begin ():