Salome HOME
91c3739810525338a1a6ef10fe2e7463b19efd75
[modules/geom.git] / src / GEOM_SWIG / GEOM_example6.py
1 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python\r
2 #\r
3 #  Copyright (C) 2003  CEA\r
4 #\r
5 #  This library is free software; you can redistribute it and/or\r
6 #  modify it under the terms of the GNU Lesser General Public\r
7 #  License as published by the Free Software Foundation; either\r
8 #  version 2.1 of the License.\r
9 #\r
10 #  This library is distributed in the hope that it will be useful,\r
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
13 #  Lesser General Public License for more details.\r
14 #\r
15 #  You should have received a copy of the GNU Lesser General Public\r
16 #  License along with this library; if not, write to the Free Software\r
17 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA\r
18 #\r
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com\r
20 #\r
21 #\r
22 #  File   : GEOM_example6.py\r
23 #  Author : Dmitry MATVEITCHEV\r
24 #  Module : GEOM\r
25 #  $Header$\r
26 \r
27 \r
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