Salome HOME
Update copyright: 2016
[modules/geom.git] / src / GEOM_SWIG / PAL_MESH_028_geometry.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016  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, or (at your option) any later version.
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 #####################################################################
25 #Created                :17/02/2005
26 #Auhtor                 :KOVALTCHUK Alexey 
27 #GUI test scenario      :PAL-MESH-028 (geometry part)
28 #####################################################################
29 #
30 import salome
31 salome.salome_init()
32 import GEOM
33 from salome.geom import geomBuilder
34 geompy = geomBuilder.New(salome.myStudy)
35
36 import os
37
38 #Initialization
39
40 #Points construction (2.1)
41 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)]
42 for i in range(0, len(Vertices)):
43     name = "Vertex_" + str(i+1)
44     geompy.addToStudy(Vertices[i], name)
45
46 #Edges construction (3.1)
47 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])]
48 for i in range(0, len(Edges)):
49     name = "Edge_" + str(i+1)
50     geompy.addToStudy(Edges[i], name)
51
52 #Wires construction (4.1)
53 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]])]
54 for i in range(0, len(Wires)):
55     name = "Wire_" + str(i+1)
56     geompy.addToStudy(Wires[i], name)
57
58 #Faces construction (5.1)
59 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)]
60 for i in range(0, len(Faces)):
61     name = "Face_" + str(i+1)
62     geompy.addToStudy(Faces[i], name)
63
64 #Shell construction (6.1)
65 Shell_1 = geompy.MakeShell(Faces)
66 geompy.addToStudy(Shell_1, "Shell_1")
67 Shells = [Shell_1]
68
69 #Solid construction (7.1)
70 Solid_1 = geompy.MakeSolid(Shells)
71 geompy.addToStudy(Solid_1, "Solid_1")
72
73 #Prism construction (8.1)
74 Prism_1 = geompy.MakePrismVecH(Faces[4], Edges[1], 100)
75 geompy.addToStudy(Prism_1, "Prism_1")
76
77 #Save Study (9.1)
78 theHomePath = os.getenv("HOME")
79 theFilenameToSave = theHomePath + "/Pyramid.hdf"
80 if os.access(theFilenameToSave, os.F_OK):
81     if os.access(theFilenameToSave, os.W_OK):
82         os.remove(theFilenameToSave)
83         salome.myStudyManager.SaveAs(theFilenameToSave, salome.myStudy, 0)
84     else:
85         print "You have no enough permissions to overwrite HDF file: ",theFilenameToSave
86 else:
87     salome.myStudyManager.SaveAs(theFilenameToSave, salome.myStudy, 0)
88     
89
90 salome.sg.updateObjBrowser(1)