smesh/doc/salome/examples/transforming_meshes_ex04.py

14 lines
252 B
Python
Raw Normal View History

2013-02-12 20:37:44 +06:00
# Symmetry
import math
import SMESH_mechanic
smesh = SMESH_mechanic.smesh
mesh = SMESH_mechanic.mesh
# create a symmetrical copy of the mesh mirrored through a point
2013-02-28 21:07:35 +06:00
axis = smesh.AxisStruct(0, 0, 0, 0, 0, 0)
2013-02-12 20:37:44 +06:00
mesh.Mirror([], axis, smesh.POINT, 1)