1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2013 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.
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 # =======================================
33 # A small cube centered and put on a great cube build by primitive geometric functionalities
47 blockPoint111 = MakeVertex(ox , oy, oz)
48 blockPoint211 = MakeVertex(ox+arete, oy, oz)
49 blockPoint112 = MakeVertex(ox , oy, oz+arete)
50 blockPoint212 = MakeVertex(ox+arete, oy, oz+arete)
55 blockFace1 = MakeQuad4Vertices(blockPoint111, blockPoint211, blockPoint212, blockPoint112)
57 blockSolid11 = MakePrismVecH(blockFace1, MakeVectorDXDYDZ(0, 1, 0), arete)
62 blockSolid21 = MakeTranslation(blockSolid11, arete, 0, 0)
63 blockSolid31 = MakeTranslation(blockSolid21, arete, 0, 0)
65 blockSolid12 = MakeTranslation(blockSolid11, 0, 0, arete)
66 blockSolid22 = MakeTranslation(blockSolid12, arete, 0, 0)
67 blockSolid32 = MakeTranslation(blockSolid22, arete, 0, 0)
69 blockSolid13 = MakeTranslation(blockSolid12, 0, 0, arete)
70 blockSolid23 = MakeTranslation(blockSolid13, arete, 0, 0)
71 blockSolid33 = MakeTranslation(blockSolid23, arete, 0, 0)
73 blockSolid111 = MakeTranslation(blockSolid22, 0, arete, 0)
79 c_l.append(blockSolid11)
80 c_l.append(blockSolid21)
81 c_l.append(blockSolid31)
82 c_l.append(blockSolid12)
83 c_l.append(blockSolid22)
84 c_l.append(blockSolid32)
85 c_l.append(blockSolid13)
86 c_l.append(blockSolid23)
87 c_l.append(blockSolid33)
88 c_l.append(blockSolid111)
90 c_cpd = MakeCompound(c_l)
92 piece = MakeGlueFaces(c_cpd, 1.e-5)
97 piece_id = addToStudy(piece, "ex02_cube2primitive")
102 smesh.SetCurrentStudy(salome.myStudy)
104 # Create hexahedrical mesh on piece
105 # ---------------------------------
107 hexa = smesh.Mesh(piece, "ex02_cube2primitive:hexa")
109 algo = hexa.Segment()