Salome HOME
Merge from BR_plugins_pbyacs 03/04/2013
[modules/smesh.git] / doc / salome / examples / transforming_meshes_ex04.py
index 0bfea6188467d331ea2629dc53fae82fc21ad7fb..910035521d31f3b66ffad7ec9abbad0962166d7e 100644 (file)
@@ -3,11 +3,12 @@
 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)
+axis = SMESH.AxisStruct(0, 0, 0, 0, 0, 0)
 
 mesh.Mirror([], axis, smesh.POINT, 1)