1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
4 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 # GEOM GEOM_SWIG : binding of C++ omplementaion with Python
25 # File : GEOM_Partition3.py
27 # import callovo_01_GEOM
28 # reload(callovo_01_GEOM)
33 from salome.geom import geomBuilder
34 geompy = geomBuilder.New(salome.myStudy)
36 vecx = geompy.MakeVectorDXDYDZ(1.,0.,0.)
44 colis = geompy.MakeCylinder(
45 geompy.MakeVertex(colis_xmin,0.,0.),
48 colis_xmax-colis_xmin)
58 bo = geompy.MakeCylinder(
59 geompy.MakeVertex(bo_xmin,0.,0.),
69 alvRup_xmax = colis_xmax
72 alvRup = geompy.MakeCylinder(
73 geompy.MakeVertex(alvRup_xmin,0.,0.),
76 alvRup_xmax-alvRup_xmin)
82 bouchon_xmin = colis_xmax
84 bouchon_radius = alvRup_radius
86 bouchon = geompy.MakeCylinder(
87 geompy.MakeVertex(bouchon_xmin,0.,0.),
90 bouchon_xmax-bouchon_xmin)
92 #GOList.append(bouchon)
94 # -- endommagement alveole
100 alvEnd = geompy.MakeCylinder(
101 geompy.MakeVertex(alvEnd_xmin,0.,0.),
104 alvEnd_xmax-alvEnd_xmin)
106 GOList.append(alvEnd)
110 galerie_xmin = bouchon_xmax
112 galerie_radius = 2.17
114 galerie = geompy.MakeCylinder(
115 geompy.MakeVertex(galerie_xmin,0.,0.),
118 galerie_xmax-galerie_xmin)
120 GOList.append(galerie)
125 galRup_xmax = galerie_xmax
128 galRup = geompy.MakeCylinder(
129 geompy.MakeVertex(galRup_xmin,0.,0.),
132 galRup_xmax-galRup_xmin)
134 GOList.append(galRup)
138 galEnd_xmin = alvEnd_xmax
139 galEnd_xmax = galerie_xmax
142 galEnd = geompy.MakeCylinder(
143 geompy.MakeVertex(galEnd_xmin,0.,0.),
146 galEnd_xmax-galEnd_xmin)
148 GOList.append(galEnd)
153 box = geompy.MakeBox(0., 0., 0., galerie_xmax, box_y, box_y)
154 box = geompy.MakeTranslation(box, 0.0, -box_y/2, -box_y/2)
160 callovo = geompy.MakePartition(GOList, [], [], [bouchon])
161 geompy.addToStudy(callovo, "callovo 2")