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