]> SALOME platform Git repositories - plugins/hexablockplugin.git/blob - src/HEXABLOCKPlugin/HEXABLOCKPlugin_FromSkin_3D.hxx
Salome HOME
a209dc35a10d9352de167fde22fec5198ff0d5f8
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_FromSkin_3D.hxx
1 // Copyright (C) 2009-2013  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.
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 "SMESH_StdMeshers.hxx"
28 #include "SMESH_Algo.hxx"
29
30 // from HexaBlocks
31 #include "hexa_base.hxx" 
32 #include "HexDocument.hxx"
33 #include "HexVertex.hxx"
34 // #include "HexEdge.hxx"
35 // #include "HexQuad.hxx"
36 #include "HexHexa.hxx"
37 #include "HEXABLOCKPlugin_mesh.hxx"
38
39 /*!
40  * \brief Alorithm generating hexahedral mesh from 2D skin of block
41  */
42
43 class STDMESHERS_EXPORT SMESH_HexaFromSkin_3D : public SMESH_3D_Algo
44 {
45 public:
46 //   SMESH_HexaFromSkin_3D(int hypId, int studyId, SMESH_Gen* gen);
47   SMESH_HexaFromSkin_3D(int hypId, int studyId, SMESH_Gen* gen, HEXA_NS::Document* doc);
48   virtual ~SMESH_HexaFromSkin_3D();
49
50   virtual bool Compute(SMESH_Mesh & aMesh, SMESH_MesherHelper* aHelper);
51   virtual bool Compute(SMESH_Mesh & aMesh, SMESH_MesherHelper* aHelper,
52       std::map<HEXA_NS::Hexa*, SMESH_HexaBlocks::SMESHVolumes>& volumesOnHexa,
53       std::map<HEXA_NS::Vertex*, SMDS_MeshNode*> vertexNode );
54
55   virtual bool CheckHypothesis(SMESH_Mesh& aMesh,
56                                const TopoDS_Shape& aShape,
57                                Hypothesis_Status& aStatus);
58
59   virtual bool Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
60
61   virtual bool Evaluate(SMESH_Mesh &         aMesh,
62                         const TopoDS_Shape & aShape,
63                         MapShapeNbElems&     aResMap);
64
65 private:
66   HEXA_NS::Document*  _doc;
67
68 };
69
70 #endif