mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
11 lines
218 B
Python
11 lines
218 B
Python
# Removing Nodes
|
|
|
|
import SMESH_mechanic
|
|
|
|
mesh = SMESH_mechanic.mesh
|
|
|
|
# remove nodes #246 and #255
|
|
res = mesh.RemoveNodes([246, 255])
|
|
if res == 1: print("Nodes removing is OK!")
|
|
else: print("KO nodes removing.")
|