smesh/doc/examples/transforming_meshes_ex01.py
2022-04-12 17:32:30 +03:00

12 lines
223 B
Python

# Translation
import SMESH_mechanic
mesh = SMESH_mechanic.mesh
# define translation vector
vector = [-150., -150., 0.]
# make a translated copy of all elements of the mesh
mesh.TranslateObject(mesh, vector, Copy=True)