smesh/src/SMESH_SWIG/SMESH_GroupLyingOnGeom.py

24 lines
638 B
Python
Raw Normal View History

from smesh import *
2005-01-20 11:25:54 +05:00
def BuildGroupLyingOn(theMesh, theElemType, theName, theShape):
aFilterMgr = smesh.CreateFilterManager()
2005-01-20 11:25:54 +05:00
aFilter = aFilterMgr.CreateFilter()
aLyingOnGeom = aFilterMgr.CreateLyingOnGeom()
aLyingOnGeom.SetGeom(theShape)
aLyingOnGeom.SetElementType(theElemType)
aFilter.SetPredicate(aLyingOnGeom)
anIds = aFilter.GetElementsId(theMesh)
aGroup = theMesh.CreateGroup(theElemType, theName)
aGroup.Add(anIds)
#Example
from SMESH_test1 import *
2005-01-20 11:25:54 +05:00
smesh.Compute(mesh, box)
BuildGroupLyingOn(mesh, SMESH.FACE, "Group of faces lying on edge", edge )
2005-01-20 11:25:54 +05:00
salome.sg.updateObjBrowser(1);