smesh/doc/examples/modifying_meshes_ex07.py

13 lines
291 B
Python
Raw Normal View History

2013-02-12 20:37:44 +06:00
# Add Tetrahedron
2022-04-11 18:28:01 +05:00
from mechanic import *
2013-02-12 20:37:44 +06:00
# add node
n1 = mesh.AddNode(50, 10, 0)
2017-03-20 17:27:30 +05:00
if n1 == 0: print("KO node addition.")
2013-02-12 20:37:44 +06:00
# add tetrahedron
t1 = mesh.AddVolume([n1, 38, 39, 246])
2017-03-20 17:27:30 +05:00
if t1 == 0: print("KO tetrahedron addition.")
else: print("New Tetrahedron has been added with ID ", t1)