Salome HOME
sources v1.2
[modules/geom.git] / src / GEOM_SWIG / GEOM_example.py
1 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
2 #
3 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5
6 #  This library is free software; you can redistribute it and/or 
7 #  modify it under the terms of the GNU Lesser General Public 
8 #  License as published by the Free Software Foundation; either 
9 #  version 2.1 of the License. 
10
11 #  This library is distributed in the hope that it will be useful, 
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 #  Lesser General Public License for more details. 
15
16 #  You should have received a copy of the GNU Lesser General Public 
17 #  License along with this library; if not, write to the Free Software 
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19
20 #  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 #
22 #
23 #
24 #  File   : GEOM_example.py
25 #  Author : Paul RASCLE, EDF
26 #  Module : GEOM
27 #  $Header$
28
29 import salome
30 import geompy
31
32 ind = 0
33 boxlist = []
34 while ind < 5:
35     x1 = 10. * ind
36     y1 = 0.
37     z1 = 0.
38     x2 = 10. * (ind+1)
39     y2 = 20. * (ind+1)
40     z2 = 30. * (ind+1)
41     print x1, y1, z1, x2, y2, z2
42     name = "box%d"%(ind)
43     box = geompy.MakeBox(x1, y1, z1, x2, y2, z2)
44     id_box = geompy.addToStudy(box, name)
45     boxlist.append(box)
46     ind = ind +1
47