smesh/doc/salome/examples/modifying_meshes_ex12.py

11 lines
249 B
Python
Raw Normal View History

2013-02-12 20:37:44 +06:00
# Removing Elements
import SMESH_mechanic
mesh = SMESH_mechanic.mesh
# remove three elements: #850, #859 and #814
res = mesh.RemoveElements([850, 859, 814])
if res == 1: print "Elements removing is OK!"
else: print "KO Elements removing."