Salome HOME
Copyright update 2022
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_FromSkin_3D.hxx
1 // Copyright (C) 2009-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File      : SMESH_HexaFromSkin_3D.hxx
21 // Created   : Wed Jan 27 12:23:21 2010
22 // Author    : Edward AGAPOV (eap)
23 //
24 #ifndef __SMESH_HexaFromSkin_3D_HXX__
25 #define __SMESH_HexaFromSkin_3D_HXX__
26
27 #include "HEXABLOCKPlugin_Defs.hxx"
28 #include "SMESH_StdMeshers.hxx"
29 #include "SMESH_Algo.hxx"
30
31 // from HexaBlocks
32 #include "hexa_base.hxx" 
33 #include "HexDocument.hxx"
34 #include "HexVertex.hxx"
35 // #include "HexEdge.hxx"
36 // #include "HexQuad.hxx"
37 #include "HexHexa.hxx"
38 #include "HEXABLOCKPlugin_mesh.hxx"
39
40 /*!
41  * \brief Alorithm generating hexahedral mesh from 2D skin of block
42  */
43
44 class HEXABLOCKPLUGINENGINE_EXPORT SMESH_HexaFromSkin_3D : public SMESH_3D_Algo
45 {
46 public:
47 //   SMESH_HexaFromSkin_3D(int hypId, SMESH_Gen* gen);
48   SMESH_HexaFromSkin_3D(int hypId, SMESH_Gen* gen, HEXA_NS::Document* doc);
49   virtual ~SMESH_HexaFromSkin_3D();
50
51   virtual bool Compute(SMESH_Mesh & aMesh, SMESH_MesherHelper* aHelper);
52   virtual bool Compute(SMESH_Mesh & aMesh, SMESH_MesherHelper* aHelper,
53       std::map<HEXA_NS::Hexa*, SMESH_HexaBlocks::SMESHVolumes>& volumesOnHexa,
54       std::map<HEXA_NS::Vertex*, SMDS_MeshNode*> vertexNode );
55
56   virtual bool CheckHypothesis(SMESH_Mesh& aMesh,
57                                const TopoDS_Shape& aShape,
58                                Hypothesis_Status& aStatus);
59
60   virtual bool Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
61
62   virtual bool Evaluate(SMESH_Mesh &         aMesh,
63                         const TopoDS_Shape & aShape,
64                         MapShapeNbElems&     aResMap);
65
66 private:
67   HEXA_NS::Document*  _doc;
68
69 };
70
71 #endif