Salome HOME
bos #29171 Refactor testing procedure
[modules/smesh.git] / doc / salome / examples / transforming_meshes_ex04.py
diff --git a/doc/salome/examples/transforming_meshes_ex04.py b/doc/salome/examples/transforming_meshes_ex04.py
deleted file mode 100644 (file)
index 9100355..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-# Symmetry
-
-import math
-
-import SMESH_mechanic
-import SMESH
-
-smesh = SMESH_mechanic.smesh
-mesh = SMESH_mechanic.mesh 
-
-# create a symmetrical copy of the mesh mirrored through a point
-axis = SMESH.AxisStruct(0, 0, 0, 0, 0, 0)
-
-mesh.Mirror([], axis, smesh.POINT, 1)