Salome HOME
Merge from V5_1_main branch 24/11/2010
[modules/geom.git] / src / GEOM_SWIG / PAL_MESH_035_geometry.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2010  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                :15/02/2005
26 #Auhtor                 :KOVALTCHUK Alexey 
27 #GUI test scenario      :PAL-MESH-035 (geometry part)
28 #####################################################################
29 #
30 import geompy
31 import salome
32
33 #Box creation (2.2)
34 Box_1 = geompy.MakeBoxDXDYDZ(200, 400, 300)
35 geompy.addToStudy(Box_1, "Box_1")
36
37 #Cylinder creation (2.8)
38 Cylinder_1 = geompy.MakeCylinderRH(100, 300)
39 geompy.addToStudy(Cylinder_1, "Cylinder_1")
40
41 #Cone creation (2.13)
42 Cone_1 = geompy.MakeConeR1R2H(100, 50, 200)
43 geompy.addToStudy(Cone_1, "Cone_1")
44
45 #Explode box, cone and cylinder on faces and vertices(2.18)
46 ListOfFaces_Box_1 = geompy.SubShapeAll(Box_1, geompy.ShapeType["FACE"])
47 NbExplodedFaces_Box_1 = len(ListOfFaces_Box_1)
48 for i in range (0, NbExplodedFaces_Box_1):
49    name = "Face_" + str(i+1)
50    geompy.addToStudyInFather(Box_1, ListOfFaces_Box_1[i], name)
51
52 ListOfVertices_Box_1 = geompy.SubShapeAll(Box_1, geompy.ShapeType["VERTEX"])
53 NbExplodedVertices_Box_1 = len(ListOfVertices_Box_1)
54 for i in range (0, NbExplodedVertices_Box_1):
55    name = "Vertex_" + str(i+1)
56    geompy.addToStudyInFather(Box_1, ListOfVertices_Box_1[i], name)
57    
58 ListOfFaces_Cylinder_1 = geompy.SubShapeAll(Cylinder_1, geompy.ShapeType["FACE"])
59 NbExplodedFaces_Cylinder_1 = len(ListOfFaces_Cylinder_1)
60 for i in range (0, NbExplodedFaces_Cylinder_1):
61    name = "Face_" + str(NbExplodedFaces_Box_1+i+1)
62    geompy.addToStudyInFather(Cylinder_1, ListOfFaces_Cylinder_1[i], name)
63    
64 ListOfFaces_Cone_1 = geompy.SubShapeAll(Cone_1, geompy.ShapeType["FACE"])
65 NbExplodedFaces_Cone_1 = len(ListOfFaces_Cone_1)
66 for i in range (0, NbExplodedFaces_Cone_1):
67    name = "Face_" + str(NbExplodedFaces_Box_1+NbExplodedFaces_Cylinder_1+i+1)
68    geompy.addToStudyInFather(Cone_1, ListOfFaces_Cone_1[i], name)
69    
70 #Plane creation (2.32)
71 Plane_1 = geompy.MakePlaneThreePnt(ListOfVertices_Box_1[0], ListOfVertices_Box_1[1], ListOfVertices_Box_1[3], 600)
72 geompy.addToStudy(Plane_1, "Plane_1")
73
74 #Partition (2.32)
75 compound = geompy.MakeCompound([ListOfFaces_Cylinder_1[0], ListOfFaces_Cone_1[0]])
76 Partition_1 = geompy.MakeHalfPartition(compound, Plane_1)
77 geompy.addToStudy(Partition_1, "Partition_1")
78
79 #Explode partition on faces and vertices(2.38)
80 ListOfFaces_Partition_1 = geompy.SubShapeAll(Partition_1, geompy.ShapeType["FACE"])
81 NbExplodedFaces_Partition_1 = len(ListOfFaces_Partition_1)
82 for i in range (0, NbExplodedFaces_Partition_1):
83    name = "Face_" + str(NbExplodedFaces_Box_1+NbExplodedFaces_Cylinder_1+NbExplodedFaces_Cone_1+i+1)
84    geompy.addToStudyInFather(Partition_1, ListOfFaces_Partition_1[i], name)
85
86 #Explode faces on vertices(2.43)
87 ListOfVertices_Face_7 = geompy.SubShapeAll(ListOfFaces_Cylinder_1[0], geompy.ShapeType["VERTEX"])
88 NbExplodedVertices_Face_7 = len(ListOfVertices_Face_7)
89 for i in range (0, NbExplodedVertices_Face_7):
90    name = "Vertex_" + str(NbExplodedVertices_Box_1+i+1)
91    geompy.addToStudyInFather(ListOfFaces_Cylinder_1[0], ListOfVertices_Face_7[i], name)
92
93 ListOfVertices_Face_10 = geompy.SubShapeAll(ListOfFaces_Cone_1[0], geompy.ShapeType["VERTEX"])
94 NbExplodedVertices_Face_10 = len(ListOfVertices_Face_10)
95 for i in range (0, NbExplodedVertices_Face_10):
96    name = "Vertex_" + str(NbExplodedVertices_Box_1+NbExplodedVertices_Face_7+i+1)
97    geompy.addToStudyInFather(ListOfFaces_Cone_1[0], ListOfVertices_Face_10[i], name)
98
99 ListOfVertices_Face_15 = geompy.SubShapeAll(ListOfFaces_Partition_1[2], geompy.ShapeType["VERTEX"])
100 NbExplodedVertices_Face_15 = len(ListOfVertices_Face_15)
101 for i in range (0, NbExplodedVertices_Face_15):
102    name = "Vertex_" + str(NbExplodedVertices_Box_1+NbExplodedVertices_Face_7+NbExplodedVertices_Face_10+i+1)
103    geompy.addToStudyInFather(ListOfFaces_Partition_1[2], ListOfVertices_Face_15[i], name)
104
105 ListOfVertices_Face_18 = geompy.SubShapeAll(ListOfFaces_Partition_1[NbExplodedFaces_Partition_1-1], geompy.ShapeType["VERTEX"])
106 NbExplodedVertices_Face_18 = len(ListOfVertices_Face_18)
107 for i in range (0, NbExplodedVertices_Face_18):
108    name = "Vertex_" + str(NbExplodedVertices_Box_1+NbExplodedVertices_Face_7+NbExplodedVertices_Face_10+NbExplodedVertices_Face_15+i+1)
109    geompy.addToStudyInFather(ListOfFaces_Partition_1[NbExplodedFaces_Partition_1-1], ListOfVertices_Face_18[i], name)
110
111 salome.sg.updateObjBrowser(1)