1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 # GEOM GEOM_SWIG : binding of C++ omplementaion with Python
22 # File : GEOM_example6.py
23 # Author : Dmitry MATVEITChEV
29 from salome.geom import geomBuilder
30 geompy = geomBuilder.New(salome.myStudy)
38 x2 = 10. + (10. * ind)
41 x3 = 50. + (10. * ind)
45 print x1, y1, z1, x2, y2, z2, x3, y3, z3
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)
57 name = "circle%d"%(ind)
58 circle = geompy.MakeCircleCenter2Pnt(point1, point2, point3)
59 id_circle = geompy.addToStudy(circle, name)
60 circlelist.append(circle)