mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
12 lines
207 B
Python
12 lines
207 B
Python
# Add Node
|
|
|
|
import smesh
|
|
|
|
mesh = smesh.Mesh()
|
|
|
|
# add node
|
|
new_id = mesh.AddNode(50, 10, 0)
|
|
print ""
|
|
if new_id == 0: print "KO node addition."
|
|
else: print "New Node has been added with ID ", new_id
|