Salome HOME
Bug 20110: EDF GEOM 882: Unwanted crosses after partition. A fix by PKV.
[modules/geom.git] / src / GEOM_SWIG / GEOM_example5.py
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
23 #  File   : GEOM_example5.py
24 #  Author : Damien COQUERET, Open CASCADE
25 #  Module : GEOM
26 #  $Header$
27 #
28 import salome
29 import geompy
30
31 geom = salome.lcc.FindOrLoadComponent("FactoryServer", "GEOM")
32
33 #Create Points
34 BasicOp = geom.GetIBasicOperations(salome.myStudyId)
35 Vertex1 = BasicOp.MakePointXYZ(0., 0., 0.)
36 Vertex2 = BasicOp.MakePointXYZ(100., 20., 30.)
37 Vertex3 = BasicOp.MakePointXYZ(150., 100., -25.)
38 Vertex4 = BasicOp.MakePointXYZ(40., -80., 79.)
39
40 #GEOM_Objects List for Splines
41 GOList = []
42 GOList.append(Vertex1)
43 GOList.append(Vertex2)
44 GOList.append(Vertex3)
45 GOList.append(Vertex4)
46
47 #Create Splines
48 Bezier   = geompy.MakeBezier(GOList)
49 Interpol = geompy.MakeInterpol(GOList)
50
51 #Add In Study
52 id_Bezier   = geompy.addToStudy(Bezier,   "Bezier")
53 id_Interpol = geompy.addToStudy(Interpol, "Interpol")