X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESH_SWIG%2Fex29_refine.py;h=a709614fae8e1b2189c18b6130dcf123e376017d;hb=214d7e4bdce3ce892f52229fd37d74ebf251cd8e;hp=22263aa11ad24a9f6b53ffde2b74ac5dbc6c76e5;hpb=bd8f1aee7c78f7d2eb82bd4fec5e08c9e3d280ce;p=modules%2Fsmesh.git diff --git a/src/SMESH_SWIG/ex29_refine.py b/src/SMESH_SWIG/ex29_refine.py index 22263aa11..a709614fa 100644 --- a/src/SMESH_SWIG/ex29_refine.py +++ b/src/SMESH_SWIG/ex29_refine.py @@ -1,10 +1,10 @@ # -*- coding: iso-8859-1 -*- -# Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE # # 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 @@ -21,8 +21,15 @@ # ======================================= # Procedure that take a triangulation and split all triangles in 4 others triangles # -import geompy -import smesh +import salome +salome.salome_init() +import GEOM +from salome.geom import geomBuilder +geompy = geomBuilder.New(salome.myStudy) + +import SMESH, SALOMEDS +from salome.smesh import smeshBuilder +smesh = smeshBuilder.New(salome.myStudy) import os @@ -81,10 +88,10 @@ def triangle(m, f, n1, n2, n3): def SplitTrianglesIn4(m): # Get all triangles - triangles = m.GetElementsByType(smesh.FACE) + triangles = m.GetElementsByType(SMESH.FACE) # Remove all edges - m.RemoveElements(m.GetElementsByType(smesh.EDGE)) + m.RemoveElements(m.GetElementsByType(SMESH.EDGE)) # Get the list of nodes (ids) associated with the CAD vertices shape = m.GetShape() @@ -222,4 +229,4 @@ MyMesh.ExportMED(path+str(NbCells4)+"_triangles.med", 0) # Update the object browser # ------------------------- -geompy.salome.sg.updateObjBrowser(1) +salome.sg.updateObjBrowser(1)