mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
9 lines
190 B
Python
9 lines
190 B
Python
# Symmetry
|
|
|
|
from mechanic import *
|
|
|
|
# create a symmetrical copy of the mesh mirrored through a point
|
|
axis = SMESH.AxisStruct(0, 0, 0, 0, 0, 0)
|
|
|
|
mesh.Mirror([], axis, smesh_builder.POINT, 1)
|