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