Salome HOME
Check result of Compute() in test and examples
[modules/smesh.git] / doc / examples / filters_ex03.py
1 # Warping angle
2
3 # create mesh
4 from mechanic import *
5
6 # get faces with warping angle = 2.0e-13 with tolerance 5.0e-14
7 filter = smesh_builder.GetFilter(SMESH.FACE, SMESH.FT_Warping, "=", 2.0e-13, Tolerance=5.0e-14)
8 ids = mesh.GetIdsFromFilter(filter)
9 print("Number of faces with warping angle = 2.0e-13 (tolerance 5.0e-14):", len(ids))