Salome HOME
Mantis issue 0020685: GetShapesOnShape: correct argument theCheckShape description.
[modules/geom.git] / src / GEOM_SWIG / GEOM_Partition1.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 #  GEOM GEOM_SWIG : binding of C++ omplementaion with Python
24 #  File   : GEOM_Partition1.py
25 #  Module : GEOM
26 # appel:
27 # import alveole_3D_01_GEOM
28 # reload(alveole_3D_01_GEOM)
29 # -- Rayon de la bariere
30 #
31 barier_height = 7.0
32 barier_radius = 5.6 / 2 # Rayon de la bariere
33 colis_radius = 1.0 / 2  # Rayon du colis
34 colis_step = 2.0        # Distance s\89parant deux colis
35 cc_width = 0.11         # Epaisseur du complement de colisage
36
37 # --
38
39 cc_radius = colis_radius + cc_width
40 from math import sqrt
41 colis_center = sqrt(2.0)*colis_step/2
42
43 # --
44
45 import geompy
46 geom = geompy.geom
47
48 boolean_common  = 1
49 boolean_cut     = 2
50 boolean_fuse    = 3
51 boolean_section = 4
52
53 # --
54
55 pnt0 = geompy.MakeVertex(0.,0.,0.)
56 vecz = geompy.MakeVectorDXDYDZ(0.,0.,1.)
57
58 barier = geompy.MakeCylinder(
59     pnt0,
60     vecz,
61     barier_radius,
62     barier_height)
63
64 # --
65
66 colis = geompy.MakeCylinder(pnt0, vecz, colis_radius, barier_height)
67
68 cc = geompy.MakeCylinder(pnt0, vecz, cc_radius, barier_height)
69
70 colis_cc = geompy.MakeCompound([colis, cc])
71
72 colis_cc = geompy.MakeTranslation(colis_cc, colis_center, 0.0, 0.0)
73
74 colis_cc_multi = geompy.MultiRotate1D(colis_cc, vecz, 4)
75
76 # --
77
78 Compound1 = geompy.MakeCompound([colis_cc_multi, barier])
79 SubShape_theShape = geompy.SubShapeAll(Compound1,geompy.ShapeType["SOLID"])
80 alveole = geompy.MakePartition(SubShape_theShape)
81 #alveole = geompy.MakePartition([colis_cc_multi, barier])
82
83 geompy.addToStudy(alveole, "alveole before explode")
84
85 subshapes = geompy.SubShapeAll(alveole, geompy.ShapeType["SHAPE"])
86
87 ## there are 9 subshapes
88
89 comp1 = geompy.MakeCompound([subshapes[0], subshapes[1]]);
90 comp2 = geompy.MakeCompound([subshapes[2], subshapes[3]]);
91 comp3 = geompy.MakeCompound([subshapes[4], subshapes[5]]);
92 comp4 = geompy.MakeCompound([subshapes[6], subshapes[7]]);
93
94 compGOs = []
95 compGOs.append(comp1);
96 compGOs.append(comp2);
97 compGOs.append(comp3);
98 compGOs.append(comp4);
99 comp = geompy.MakeCompound(compGOs);
100
101 alveole = geompy.MakeCompound([comp, subshapes[8]]);
102
103 geompy.addToStudy(alveole, "alveole")