Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/geom.git] / src / GEOM_SWIG / PAL_MESH_033_geometry.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 #####################################################################
23 #Created                :17/02/2005
24 #Auhtor                 :KOVALTCHUK Alexey 
25 #GUI test scenario      :PAL-MESH-033 (geometry part)
26 #####################################################################
27 #
28 import geompy
29 import salome
30
31 #Points creation (2.2)
32 Vertex_1 = geompy.MakeVertex(0, 0, 0)
33 geompy.addToStudy(Vertex_1, "Vertex_1")
34
35 Vertex_2 = geompy.MakeVertex(0, 100, 0)
36 geompy.addToStudy(Vertex_2, "Vertex_2")
37
38 Vertex_3 = geompy.MakeVertex(100, 100, 0)
39 geompy.addToStudy(Vertex_3, "Vertex_3")
40
41 Vertex_4 = geompy.MakeVertex(100, 0, 0)
42 geompy.addToStudy(Vertex_4, "Vertex_4")
43
44 #Edges creation (2.18)
45 Edge_1 = geompy.MakeEdge(Vertex_1, Vertex_2)
46 geompy.addToStudy(Edge_1, "Edge_1")
47
48 Edge_2 = geompy.MakeEdge(Vertex_2, Vertex_3)
49 geompy.addToStudy(Edge_2, "Edge_2")
50
51 Edge_3 = geompy.MakeEdge(Vertex_3, Vertex_4)
52 geompy.addToStudy(Edge_3, "Edge_3")
53
54 Edge_4 = geompy.MakeEdge(Vertex_4, Vertex_1)
55 geompy.addToStudy(Edge_4, "Edge_4")
56
57 #Wire creation (2.33)
58 Wire_1 = geompy.MakeWire([Edge_1, Edge_2, Edge_3, Edge_4])
59 geompy.addToStudy(Wire_1, "Wire_1")
60
61 salome.sg.updateObjBrowser(1)