Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/smesh.git] / src / SMESH_SWIG / SMESH_BelongToGeom.py
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 from SMESH_test1 import *
23
24 ## Old style
25 def CheckBelongToGeomFilterOld(theMeshGen, theMesh, theShape, theSubShape, theElemType):
26     import geompy
27     if theShape != theSubShape:
28         aName = str(theSubShape)
29         geompy.addToStudyInFather(theShape,theSubShape,aName)
30
31     theMeshGen.Compute(theMesh,theShape)
32
33     aFilterMgr = theMeshGen.CreateFilterManager()
34     aFilter = aFilterMgr.CreateFilter()
35    
36     aBelongToGeom = aFilterMgr.CreateBelongToGeom()
37     aBelongToGeom.SetGeom(theSubShape)
38     aBelongToGeom.SetElementType(theElemType)
39     
40     aFilter.SetPredicate(aBelongToGeom)
41     return aFilter.GetElementsId(theMesh)
42
43 ## Current style
44 def CheckBelongToGeomFilter(theMesh, theShape, theSubShape, theElemType):
45     import geompy
46     import smesh
47     if theShape != theSubShape:
48         aName = str(theSubShape)
49         geompy.addToStudyInFather(theShape,theSubShape,aName)
50
51     theMesh.Compute()
52     aFilter = smesh.GetFilter(theElemType, smesh.FT_BelongToGeom, theSubShape)
53     return aFilter.GetElementsId(theMesh.GetMesh())
54     
55
56 anElemType = smesh.FACE;
57 print "anElemType =", anElemType
58 #anIds = CheckBelongToGeomFilter(mesh,box,subShapeList[1],anElemType)
59 anIds = CheckBelongToGeomFilter(mesh,box,box,anElemType)
60 print "Number of ids = ", len(anIds)
61 print "anIds = ", anIds
62 ## Check old version
63 #anIds = CheckBelongToGeomFilterOld(smesh.smesh,mesh.GetMesh(),box,box,anElemType)
64 #print "anIds = ", anIds
65
66 salome.sg.updateObjBrowser(1);