Salome HOME
PR: examples adaptation BR_plugins_pbyacs
authorprascle <prascle>
Fri, 22 Mar 2013 08:30:21 +0000 (08:30 +0000)
committerprascle <prascle>
Fri, 22 Mar 2013 08:30:21 +0000 (08:30 +0000)
doc/salome/examples/transforming_meshes_ex02.py
doc/salome/examples/transforming_meshes_ex04.py

index f96a6bb41bf1c1d363e8aa04fc07cbe6480475f2..5b3ff287e891de4acc84149fb4e1ebe2004809e9 100644 (file)
@@ -3,12 +3,13 @@
 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.)
+axisXYZ = SMESH.AxisStruct(0., 0., 0., 5., 5., 20.)
 angle270 = 1.5 * math.pi
 
 # rotate a mesh
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)