From 03969f4f2e091835bcbc960a0e60b59e393529db Mon Sep 17 00:00:00 2001 From: spo Date: Fri, 17 Jun 2016 14:48:31 +0300 Subject: [PATCH] Fix model.services.defaultPlane() --- src/PythonAPI/model/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (): -- 2.39.2