Salome HOME
updated copyright message
[modules/smesh.git] / src / SMESH / SMESH_SequentialMesh.cxx
1 // Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : SMESH_SequentialMesh.cxx
24 //  Author : Yoann AUDOUIN, EDF
25 //  Module : SMESH
26 //
27 #include "SMESH_SequentialMesh.hxx"
28
29 #include <TopExp_Explorer.hxx>
30 #include <TopoDS.hxx>
31 #include <TopoDS_Iterator.hxx>
32
33 #include <utilities.h>
34
35 SMESH_SequentialMesh::SMESH_SequentialMesh(int               theLocalId,
36                        SMESH_Gen*        theGen,
37                        bool              theIsEmbeddedMode,
38                        SMESHDS_Document* theDocument) :SMESH_Mesh(theLocalId,
39                                                                   theGen,
40                                                                   theIsEmbeddedMode,
41                                                                   theDocument)
42 {
43   MESSAGE("SMESH_SequentialMesh::SMESH_SequentialMesh(int localId)");
44 };
45
46 SMESH_SequentialMesh::~SMESH_SequentialMesh()
47 {
48 };
49
50 bool SMESH_SequentialMesh::ComputeSubMeshes(
51           SMESH_Gen* gen,
52           SMESH_Mesh & aMesh,
53           const TopoDS_Shape & aShape,
54           const ::MeshDimension       aDim,
55           TSetOfInt*                  aShapesId /*=0*/,
56           TopTools_IndexedMapOfShape* allowedSubShapes,
57           SMESH_subMesh::compute_event &computeEvent,
58           const bool includeSelf,
59           const bool complexShapeFirst,
60           const bool   aShapeOnly)
61 {
62     return gen->sequentialComputeSubMeshes(
63             aMesh, aShape, aDim,
64             aShapesId, allowedSubShapes,
65             computeEvent,
66             includeSelf,
67             complexShapeFirst,
68             aShapeOnly);
69 };