Salome HOME
Merge from V6_main 01/04/2013
[modules/geom.git] / src / GEOM_SWIG / GEOM_example6.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2013  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 #
26 import salome
27 import geompy
28
29 ind = 1
30 circlelist = []
31 while ind < 6:
32     x1 = 0. + (10. * ind)
33     y1 = 0.
34     z1 = 0.
35     x2 = 10. + (10. * ind)
36     y2 = 20. * (ind+1)
37     z2 = 30. * (ind+1)
38     x3 = 50. + (10. * ind)
39     y3 = 0. * (ind+1)
40     z3 = -10. * (ind+1)
41
42     print x1, y1, z1, x2, y2, z2, x3, y3, z3
43
44     point1 = geompy.MakeVertex(x1, y1, z1)
45     name1 = "point1_%d"%(ind)
46     id_pt1 = geompy.addToStudy(point1, name1)
47     point2 = geompy.MakeVertex(x2, y2, z2)
48     name2 = "point2_%d"%(ind)
49     id_pt2 = geompy.addToStudy(point2, name2)
50     point3 = geompy.MakeVertex(x3, y3, z3)
51     name3 = "point3_%d"%(ind)
52     id_pt3 = geompy.addToStudy(point3, name3)
53
54     name = "circle%d"%(ind)
55     circle = geompy.MakeCircleCenter2Pnt(point1, point2, point3)
56     id_circle = geompy.addToStudy(circle, name)
57     circlelist.append(circle)
58     ind = ind + 1