Salome HOME
904d4b897a15480245219537e1ed9ac43e756298
[modules/geom.git] / src / GEOM_SWIG / GEOM_example6.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\r
23 #  File   : GEOM_example6.py\r
24 #  Author : Dmitry MATVEITCHEV\r
25 #  Module : GEOM\r
26 #  $Header$\r
27 #
28 import salome\r
29 import geompy\r
30 \r
31 ind = 1\r
32 circlelist = []\r
33 while ind < 6:\r
34     x1 = 0. + (10. * ind)\r
35     y1 = 0.\r
36     z1 = 0.\r
37     x2 = 10. + (10. * ind)\r
38     y2 = 20. * (ind+1)\r
39     z2 = 30. * (ind+1)\r
40     x3 = 50. + (10. * ind)\r
41     y3 = 0. * (ind+1)\r
42     z3 = -10. * (ind+1)\r
43 \r
44     print x1, y1, z1, x2, y2, z2, x3, y3, z3\r
45 \r
46     point1 = geompy.MakeVertex(x1, y1, z1)\r
47     name1 = "point1_%d"%(ind)\r
48     id_pt1 = geompy.addToStudy(point1, name1)\r
49     point2 = geompy.MakeVertex(x2, y2, z2)\r
50     name2 = "point2_%d"%(ind)\r
51     id_pt2 = geompy.addToStudy(point2, name2)\r
52     point3 = geompy.MakeVertex(x3, y3, z3)\r
53     name3 = "point3_%d"%(ind)\r
54     id_pt3 = geompy.addToStudy(point3, name3)\r
55 \r
56     name = "circle%d"%(ind)\r
57     circle = geompy.MakeCircleCenter2Pnt(point1, point2, point3)\r
58     id_circle = geompy.addToStudy(circle, name)\r
59     circlelist.append(circle)\r
60     ind = ind + 1\r