]> SALOME platform Git repositories - modules/smesh.git/blobdiff - doc/salome/examples/transforming_meshes_ex02.py
Salome HOME
bos #29171 Refactor testing procedure
[modules/smesh.git] / doc / salome / examples / transforming_meshes_ex02.py
diff --git a/doc/salome/examples/transforming_meshes_ex02.py b/doc/salome/examples/transforming_meshes_ex02.py
deleted file mode 100644 (file)
index 5b3ff28..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# Rotation
-
-import math
-
-import SMESH_mechanic
-import SMESH
-
-smesh = SMESH_mechanic.smesh
-mesh = SMESH_mechanic.mesh 
-
-# define rotation axis and angle
-axisXYZ = SMESH.AxisStruct(0., 0., 0., 5., 5., 20.)
-angle270 = 1.5 * math.pi
-
-# rotate a mesh
-mesh.Rotate([], axisXYZ, angle270, 1)