Salome HOME
Bug 20110: EDF GEOM 882: Unwanted crosses after partition. A fix by PKV.
[modules/geom.git] / src / GEOM_SWIG / GEOM_example.py
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
23 #  File   : GEOM_example.py
24 #  Author : Paul RASCLE, EDF
25 #  Module : GEOM
26 #  $Header$
27 #
28 import salome
29 import geompy
30
31 ind = 0
32 boxlist = []
33 while ind < 5:
34     x1 = 10. * ind
35     y1 = 0.
36     z1 = 0.
37     x2 = 10. * (ind+1)
38     y2 = 20. * (ind+1)
39     z2 = 30. * (ind+1)
40     print x1, y1, z1, x2, y2, z2
41
42     point1 = geompy.MakeVertex(x1, y1, z1)
43     name1 = "point1_%d"%(ind)
44     id_pt1 = geompy.addToStudy(point1, name1)
45     point2 = geompy.MakeVertex(x2, y2, z2)
46     name2 = "point2_%d"%(ind)
47     id_pt2 = geompy.addToStudy(point2, name2)
48
49     name = "box%d"%(ind)
50     box = geompy.MakeBoxTwoPnt(point1, point2)
51     id_box = geompy.addToStudy(box, name)
52     boxlist.append(box)
53     ind = ind + 1