Salome HOME
bos #29171 Refactor testing procedure
[modules/smesh.git] / doc / examples / filters_ex25.py
1 # Over-constrained volumes
2
3 # create mesh
4 from mechanic import *
5
6 # get all over-constrained volumes
7 filter = smesh_builder.GetFilter(SMESH.VOLUME, SMESH.FT_OverConstrainedVolume)
8 ids = mesh.GetIdsFromFilter(filter)
9 print("Over-constrained volumes:", ids)