smesh/doc/salome/examples/transforming_meshes_ex01.py
2013-02-12 14:37:44 +00:00

16 lines
268 B
Python

# Translation
import SMESH_mechanic
smesh = SMESH_mechanic.smesh
mesh = SMESH_mechanic.mesh
# define translation vector
point = smesh.PointStruct(-150., -150., 0.)
vector =smesh.DirStruct(point)
# translate a mesh
doCopy = 1
mesh.Translate([], vector, doCopy)