1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2011 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 with partition
52 v_1 = MakeVertex(g_ox , g_oy , g_oz )
53 v_2 = MakeVertex(g_ox+v_arete3, g_oy+g_arete , g_oz+v_arete3)
55 v_3 = MakeVertex(g_ox+g_arete , g_oy+g_arete , g_oz+g_arete )
56 v_4 = MakeVertex(g_ox+v_arete2, g_oy+v_arete2, g_oz+v_arete2)
61 s_base = MakeBoxTwoPnt(v_1, v_2)
62 s_haut = MakeBoxTwoPnt(v_3, v_4)
67 p_dir1 = MakeVectorDXDYDZ(1, 0, 0)
68 p_dir2 = MakeVectorDXDYDZ(0, 0, 1)
69 p_dir3 = MakeVectorDXDYDZ(0, 1, 0)
73 p_tools.append(MakePlane(v_3, p_dir1, g_trim))
74 p_tools.append(MakePlane(v_4, p_dir1, g_trim))
75 p_tools.append(MakePlane(v_3, p_dir2, g_trim))
76 p_tools.append(MakePlane(v_4, p_dir2, g_trim))
77 p_tools.append(MakePlane(v_3, p_dir3, g_trim))
79 piece = MakePartition([s_base, s_haut], p_tools, [], [], ShapeType["SOLID"])
84 piece_id = addToStudy(piece, "ex03_cube2partition")
89 smesh.SetCurrentStudy(salome.myStudy)
91 # Create hexahedrical mesh on piece
92 # ---------------------------------
94 hexa = smesh.Mesh(piece, "ex03_cube2partition:hexa")
97 algo.NumberOfSegments(5)