Salome HOME
23586: [EDF] HYDRO: Copy mesh to new geometry
[modules/geom.git] / src / GEOM_SWIG / PAL_MESH_028_geometry.py
index d6815151ee687c11999118d55a59877f7a72dbee..92f48def861c03bd9f063c7e6b6e1d2a85a31cd7 100755 (executable)
@@ -1,5 +1,5 @@
 #  -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -7,7 +7,7 @@
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # License as published by the Free Software Foundation; either
-# version 2.1 of the License.
+# version 2.1 of the License, or (at your option) any later version.
 #
 # This library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
 #####################################################################
 #Created                :17/02/2005
-#Auhtor                 :KOVALTCHUK Alexey 
+#Author                 :KOVALTCHUK Alexey 
 #GUI test scenario      :PAL-MESH-028 (geometry part)
 #####################################################################
 #
-import geompy
 import salome
+salome.salome_init()
+import GEOM
+from salome.geom import geomBuilder
+geompy = geomBuilder.New()
+
 import os
 
 #Initialization
-salome.salome_init(1)
 
 #Points construction (2.1)
 Vertices = [geompy.MakeVertex(0, 0, 0), geompy.MakeVertex(200, 0, 0), geompy.MakeVertex(200, 200, 0), geompy.MakeVertex(0, 200, 0), geompy.MakeVertex(50, 50, 200), geompy.MakeVertex(150, 50, 200), geompy.MakeVertex(150, 150, 200), geompy.MakeVertex(50, 150, 200)]
@@ -77,11 +80,11 @@ theFilenameToSave = theHomePath + "/Pyramid.hdf"
 if os.access(theFilenameToSave, os.F_OK):
     if os.access(theFilenameToSave, os.W_OK):
         os.remove(theFilenameToSave)
-        salome.myStudyManager.SaveAs(theFilenameToSave, salome.myStudy, 0)
+        salome.myStudy.SaveAs(theFilenameToSave, 0, 0)
     else:
-        print "You have no enough permissions to overwrite HDF file: ",theFilenameToSave
+        print("You have no enough permissions to overwrite HDF file: ",theFilenameToSave)
 else:
-    salome.myStudyManager.SaveAs(theFilenameToSave, salome.myStudy, 0)
+    salome.myStudy.SaveAs(theFilenameToSave, 0, 0)
     
 
-salome.sg.updateObjBrowser(1)
+salome.sg.updateObjBrowser()