smesh/doc/salome/examples/modifying_meshes_ex04.py

16 lines
286 B
Python
Raw Normal View History

2013-02-12 20:37:44 +06:00
# Add Edge
import SMESH_mechanic
mesh = SMESH_mechanic.mesh
print ""
# add node
n1 = mesh.AddNode(50, 10, 0)
if n1 == 0: print "KO node addition."
# add edge
e1 = mesh.AddEdge([n1, 38])
if e1 == 0: print "KO edge addition."
else: print "New Edge has been added with ID ", e1