Salome HOME
IPAL0054702: TC-9.6.0: 1D Algo "Use Existing 1D elements" is ignored
[modules/smesh.git] / doc / salome / examples / filters_ex15.py
1 # Over-constrained faces
2 # create mesh
3 from SMESH_mechanic import *
4 # get all over-constrained faces
5 filter = smesh.GetFilter(SMESH.FACE, SMESH.FT_OverConstrainedFace)
6 ids = mesh.GetIdsFromFilter(filter)
7 print("Over-constrained faces:", ids)