Salome HOME
cf47151aa3b07131d6994729ece893b073332db5
[modules/hexablock.git] / doc / test_doc / cutHexa / cut_hexa.py
1 # -*- coding: utf-8 -*-
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 for Cut Hexa ###############
22
23 import hexablock
24
25
26 doc = hexablock.addDocument("Cut Hexa Test")
27
28 size_x = 2
29 size_y = 1
30 size_z = 1
31
32 grid  = doc.makeCartesianTop (size_x,size_y,size_z)
33 arete = grid.getEdgeK (0, 0, 0)
34
35 doc.saveVtk ("decoupe1.vtk")
36 nbCuts = 2
37 grid2 = doc.cutUni (arete, nbCuts)
38 doc.saveVtk ("decoupe2.vtk")
39
40 #tablen = []
41 #reste  = 1
42 #abscisse = 0
43 #for nl in range(5):
44 #    reste     /= 2
45 #    abscisse  += reste
46 #    tablen.append (abscisse)
47 tablen = [2, 3, 8, 14, 18]
48 arete = grid2.getEdge(0)
49 grid3 = doc.cut(arete, tablen)
50 doc.saveVtk ("decoupe3.vtk")