]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/PythonAPI/model/services.py
Salome HOME
Remove PythonAPI implementation
[modules/shaper.git] / src / PythonAPI / model / services.py
index 593505f5602deb51d969c290286411b752d31ed4..e328621ea059f75af90cbf6be51604fb30136756 100644 (file)
@@ -6,9 +6,6 @@ Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 import ModelAPI
 import GeomAPI
 
-import geom  # To be removed when gp_Ax3 will be Pythonized
-
-
 def moduleDocument ():
     """Return the main document (the Partset) created or open from the Modeler.
 
@@ -43,7 +40,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 ():