Salome HOME
74c620d243c94b63cb8ddc7bfa75ed6e840b2822
[modules/hexablock.git] / doc / test_doc / make_transformation / make_translation.py
1 # -*- coding: latin-1 -*-
2 # Copyright (C) 2009-2023  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
23 import hexablock
24
25 doc = hexablock.addDocument("default")
26
27 size_x = 1
28 size_y = 1
29 size_z = 2
30
31 orig = doc.addVertex(0, 0, 0)
32 dirVr = doc.addVector(1, 1, 1)
33
34 grid = doc.makeCartesian1(orig, dirVr, size_x, size_y, size_z, 0, 0, 0)
35
36 #####  doc.saveVtk ("cartesian.vtk")
37
38 devant = doc.addVector(5, 0, 0)
39 grid1 = doc.makeTranslation(grid, devant)
40
41 #####  doc.saveVtk ("translation.vtk")