Salome HOME
7b83e09f56ada37e195fd9374b41fdbd6511607f
[modules/geom.git] / src / GEOM_SWIG / PAL_MESH_028_geometry.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 #  This library is free software; you can redistribute it and/or
8 #  modify it under the terms of the GNU Lesser General Public
9 #  License as published by the Free Software Foundation; either
10 #  version 2.1 of the License.
11 #
12 #  This library is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 #  Lesser General Public License for more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public
18 #  License along with this library; if not, write to the Free Software
19 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23 #####################################################################
24 #Created                :17/02/2005
25 #Auhtor                 :KOVALTCHUK Alexey 
26 #GUI test scenario      :PAL-MESH-028 (geometry part)
27 #####################################################################
28 #
29 import geompy
30 import salome
31 import os
32
33 #Initialization
34 salome.salome_init(1)
35
36 #Points construction (2.1)
37 Vertices = [geompy.MakeVertex(0, 0, 0), geompy.MakeVertex(200, 0, 0), geompy.MakeVertex(200, 200, 0), geompy.MakeVertex(0, 200, 0), geompy.MakeVertex(50, 50, 200), geompy.MakeVertex(150, 50, 200), geompy.MakeVertex(150, 150, 200), geompy.MakeVertex(50, 150, 200)]
38 for i in range(0, len(Vertices)):
39     name = "Vertex_" + str(i+1)
40     geompy.addToStudy(Vertices[i], name)
41
42 #Edges construction (3.1)
43 Edges = [geompy.MakeEdge(Vertices[0], Vertices[1]), geompy.MakeEdge(Vertices[1], Vertices[5]), geompy.MakeEdge(Vertices[5], Vertices[4]), geompy.MakeEdge(Vertices[4], Vertices[0]), geompy.MakeEdge(Vertices[1], Vertices[2]), geompy.MakeEdge(Vertices[2], Vertices[6]), geompy.MakeEdge(Vertices[6], Vertices[5]), geompy.MakeEdge(Vertices[2], Vertices[3]), geompy.MakeEdge(Vertices[3], Vertices[7]), geompy.MakeEdge(Vertices[7], Vertices[6]), geompy.MakeEdge(Vertices[3], Vertices[0]), geompy.MakeEdge(Vertices[4], Vertices[7])]
44 for i in range(0, len(Edges)):
45     name = "Edge_" + str(i+1)
46     geompy.addToStudy(Edges[i], name)
47
48 #Wires construction (4.1)
49 Wires = [geompy.MakeWire([Edges[0], Edges[1], Edges[2], Edges[3]]), geompy.MakeWire([Edges[1], Edges[4], Edges[5], Edges[6]]), geompy.MakeWire([Edges[5], Edges[7], Edges[8], Edges[9]]), geompy.MakeWire([Edges[3], Edges[10], Edges[8], Edges[11]]), geompy.MakeWire([Edges[2], Edges[6], Edges[9], Edges[11]]), geompy.MakeWire([Edges[0], Edges[4], Edges[7], Edges[10]])]
50 for i in range(0, len(Wires)):
51     name = "Wire_" + str(i+1)
52     geompy.addToStudy(Wires[i], name)
53
54 #Faces construction (5.1)
55 Faces = [geompy.MakeFace(Wires[0], 1), geompy.MakeFace(Wires[1], 1), geompy.MakeFace(Wires[2], 1), geompy.MakeFace(Wires[3], 1), geompy.MakeFace(Wires[4], 1), geompy.MakeFace(Wires[5], 1)]
56 for i in range(0, len(Faces)):
57     name = "Face_" + str(i+1)
58     geompy.addToStudy(Faces[i], name)
59
60 #Shell construction (6.1)
61 Shell_1 = geompy.MakeShell(Faces)
62 geompy.addToStudy(Shell_1, "Shell_1")
63 Shells = [Shell_1]
64
65 #Solid construction (7.1)
66 Solid_1 = geompy.MakeSolid(Shells)
67 geompy.addToStudy(Solid_1, "Solid_1")
68
69 #Prism construction (8.1)
70 Prism_1 = geompy.MakePrismVecH(Faces[4], Edges[1], 100)
71 geompy.addToStudy(Prism_1, "Prism_1")
72
73 #Save Study (9.1)
74 theHomePath = os.getenv("HOME")
75 theFilenameToSave = theHomePath + "/Pyramid.hdf"
76 if os.access(theFilenameToSave, os.F_OK):
77     if os.access(theFilenameToSave, os.W_OK):
78         os.remove(theFilenameToSave)
79         salome.myStudyManager.SaveAs(theFilenameToSave, salome.myStudy, 0)
80     else:
81         print "You have no enough permissions to overwrite HDF file: ",theFilenameToSave
82 else:
83     salome.myStudyManager.SaveAs(theFilenameToSave, salome.myStudy, 0)
84     
85
86 salome.sg.updateObjBrowser(1)