Salome HOME
Updated copyright comment
[modules/hexablock.git] / doc / test_doc / cylinder / cylinder.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2009-2024  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 ####### Make Cylinder Test ########## 
22
23 import hexablock
24
25
26 # Simple Cylinder -----
27
28 doc  = hexablock.addDocument ("Make Cylinder Test")
29
30 nbR = 8
31 nbA = 10
32 nbH = 8
33
34 cylinder0 = doc.makeCylinderTop (nbR, nbA, nbH)
35 cylinder0.saveVtk ("makeCylinderTop.vtk")
36    
37 # Uniform Cylinder -----
38
39 origin = doc.addVertex (0, 0, 5)
40 vx     = doc.addVector (1, 0, 0)
41 vz     = doc.addVector (0, 0, 1)
42 rint   = 2
43 rext   = 4
44 angle  = 300
45 hauteur = 1
46
47
48 cylinder1 = doc.makeCylinderUni (origin, vx, vz, rint, rext, angle, hauteur, nbR, nbA, nbH)
49 cylinder1.saveVtk ("makeCylinderUni.vtk")
50
51 # Custom Cylinder
52
53 origin = doc.addVertex (5, 0, 0)
54 tr = [10, 20, 30, 40]
55 ta = [45, 90, 135, 180, 225]
56 th = [5, 30, 40, 60]
57
58 cylinder2 = doc.makeCylinder(origin, vx, vz, tr, ta, th)
59 cylinder2.saveVtk("makeCylinder.vtk")