Make elements by transforming elements

Rotate and translate for any kind of elements:

elts = doc.makeTranslation(elements, vec)
elts = doc.makeRotation(elements, ver, vec, angle)
elts = doc.makeScale (elements, destination_point, k)

and “element” could be Vertex, Edge, Quadrangle, Hexahedeon, Vector, Cylinder, Pipe and Elements and the result “elts” is always an object of type “Elements”.

Operations on elts: Elements

Example

Translation

 1# -*- coding: latin-1 -*-
 2# Copyright (C) 2009-2026  CEA, EDF
 3#
 4# This library is free software; you can redistribute it and/or
 5# modify it under the terms of the GNU Lesser General Public
 6# License as published by the Free Software Foundation; either
 7# version 2.1 of the License, or (at your option) any later version.
 8#
 9# This library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12# Lesser General Public License for more details.
13#
14# You should have received a copy of the GNU Lesser General Public
15# License along with this library; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17#
18# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19#
20
21####### Test make translation ###############
22
23import hexablock
24
25doc = hexablock.addDocument("default")
26
27size_x = 1
28size_y = 1
29size_z = 2
30
31orig = doc.addVertex(0, 0, 0)
32dirVr = doc.addVector(1, 1, 1)
33
34grid = doc.makeCartesian1(orig, dirVr, size_x, size_y, size_z, 0, 0, 0)
35
36#####  doc.saveVtk ("cartesian.vtk")
37
38devant = doc.addVector(5, 0, 0)
39grid1 = doc.makeTranslation(grid, devant)
40
41#####  doc.saveVtk ("translation.vtk")
_images/make_translation.png

Translation

Rotation

 1# -*- coding: latin-1 -*-
 2# Copyright (C) 2009-2026  CEA, EDF
 3#
 4# This library is free software; you can redistribute it and/or
 5# modify it under the terms of the GNU Lesser General Public
 6# License as published by the Free Software Foundation; either
 7# version 2.1 of the License, or (at your option) any later version.
 8#
 9# This library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12# Lesser General Public License for more details.
13#
14# You should have received a copy of the GNU Lesser General Public
15# License along with this library; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17#
18# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19#
20
21####### Test make rotation ###############
22
23import hexablock
24
25doc = hexablock.addDocument("default")
26
27size_x = 1
28size_y = 1
29size_z = 2
30
31orig = doc.addVertex(0, 0, 0)
32dirVr = doc.addVector(1, 1, 1)
33
34grid = doc.makeCartesian1(orig, dirVr, size_x, size_y, size_z, 0, 0, 0)
35#####  grid.saveVtk ("initial.vtk")
36
37orig.setScalar(2)
38grid1 = doc.makeRotation(grid, orig, dirVr, 60)
39
40#####  grid1.saveVtk ("rotation.vtk")
_images/cartesian.png

Initial

_images/make_rotation.png

Rotation

Scale

 1# -*- coding: latin-1 -*-
 2# Copyright (C) 2009-2026  CEA, EDF
 3#
 4# This library is free software; you can redistribute it and/or
 5# modify it under the terms of the GNU Lesser General Public
 6# License as published by the Free Software Foundation; either
 7# version 2.1 of the License, or (at your option) any later version.
 8#
 9# This library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12# Lesser General Public License for more details.
13#
14# You should have received a copy of the GNU Lesser General Public
15# License along with this library; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17#
18# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19#
20
21####### Test make scale ###############
22
23import hexablock
24
25
26doc  = hexablock.addDocument ("default")
27ori  = doc.addVertex ( 0, 0, 0)
28vz   = doc.addVector ( 0, 0, 1)
29vx   = doc.addVector ( 1 ,0, 0)
30
31dr = 1
32da = 360
33dl = 1
34
35nr = 1
36na = 6
37nl = 1
38
39grid = doc.makeCylindrical (ori, vx,vz, dr,da,dl, nr,na,nl, False)
40
41dest   = doc.addVertex (15, 0, 0)
42grid2  = doc.makeScale (grid, dest, 0.5)
43
44#####  doc .saveVtk ("make_scale.vtk")
_images/make_scale.png

Scaling

GUI command: Make elements by transforming elements