Salome HOME
eae48fbbd3e912d107c998a28a42421e4823bcba
[modules/geom.git] / src / GEOM_SWIG / GEOM_example6.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2023  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, or (at your option) any later version.
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++ implementation with Python
22 #  File   : GEOM_example6.py
23 #  Author : Dmitry MATVEITChEV
24 #  Module : GEOM
25 #
26 import salome
27 salome.salome_init()
28 import GEOM
29 from salome.geom import geomBuilder
30 geompy = geomBuilder.New()
31
32 ind = 1
33 circlelist = []
34 while ind < 6:
35     x1 = 0. + (10. * ind)
36     y1 = 0.
37     z1 = 0.
38     x2 = 10. + (10. * ind)
39     y2 = 20. * (ind+1)
40     z2 = 30. * (ind+1)
41     x3 = 50. + (10. * ind)
42     y3 = 0. * (ind+1)
43     z3 = -10. * (ind+1)
44
45     print(x1, y1, z1, x2, y2, z2, x3, y3, z3)
46
47     point1 = geompy.MakeVertex(x1, y1, z1)
48     name1 = "point1_%d"%(ind)
49     id_pt1 = geompy.addToStudy(point1, name1)
50     point2 = geompy.MakeVertex(x2, y2, z2)
51     name2 = "point2_%d"%(ind)
52     id_pt2 = geompy.addToStudy(point2, name2)
53     point3 = geompy.MakeVertex(x3, y3, z3)
54     name3 = "point3_%d"%(ind)
55     id_pt3 = geompy.addToStudy(point3, name3)
56
57     name = "circle%d"%(ind)
58     circle = geompy.MakeCircleCenter2Pnt(point1, point2, point3)
59     id_circle = geompy.addToStudy(circle, name)
60     circlelist.append(circle)
61     ind = ind + 1