Salome HOME
4c17726b8e244553daed6012573c4110624ec5da
[modules/geom.git] / src / GEOM_SWIG / GEOM_example6.py
1 #! /usr/bin/python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python\r
25 #  File   : GEOM_example6.py\r
26 #  Author : Dmitry MATVEITCHEV\r
27 #  Module : GEOM\r
28 #  $Header$\r
29 #
30 import salome\r
31 import geompy\r
32 \r
33 ind = 1\r
34 circlelist = []\r
35 while ind < 6:\r
36     x1 = 0. + (10. * ind)\r
37     y1 = 0.\r
38     z1 = 0.\r
39     x2 = 10. + (10. * ind)\r
40     y2 = 20. * (ind+1)\r
41     z2 = 30. * (ind+1)\r
42     x3 = 50. + (10. * ind)\r
43     y3 = 0. * (ind+1)\r
44     z3 = -10. * (ind+1)\r
45 \r
46     print x1, y1, z1, x2, y2, z2, x3, y3, z3\r
47 \r
48     point1 = geompy.MakeVertex(x1, y1, z1)\r
49     name1 = "point1_%d"%(ind)\r
50     id_pt1 = geompy.addToStudy(point1, name1)\r
51     point2 = geompy.MakeVertex(x2, y2, z2)\r
52     name2 = "point2_%d"%(ind)\r
53     id_pt2 = geompy.addToStudy(point2, name2)\r
54     point3 = geompy.MakeVertex(x3, y3, z3)\r
55     name3 = "point3_%d"%(ind)\r
56     id_pt3 = geompy.addToStudy(point3, name3)\r
57 \r
58     name = "circle%d"%(ind)\r
59     circle = geompy.MakeCircleCenter2Pnt(point1, point2, point3)\r
60     id_circle = geompy.addToStudy(circle, name)\r
61     circlelist.append(circle)\r
62     ind = ind + 1\r