Salome HOME
Update copyright information
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_Mesher.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 //  NETGENPlugin : C++ implementation
23 // File      : NETGENPlugin_Mesher.hxx
24 // Author    : Michael Sazonov (OCN)
25 // Date      : 31/03/2006
26 // Project   : SALOME
27 // $Header$
28 //=============================================================================
29 //
30 #ifndef _NETGENPlugin_Mesher_HXX_
31 #define _NETGENPlugin_Mesher_HXX_
32
33 #include "NETGENPlugin_Defs.hxx"
34 #include "StdMeshers_FaceSide.hxx"
35 #include <map>
36
37 class SMESH_Mesh;
38 class SMESHDS_Mesh;
39 class TopoDS_Shape;
40 class NETGENPlugin_Hypothesis;
41 class NETGENPlugin_SimpleHypothesis_2D;
42 namespace netgen {
43   class OCCGeometry;
44   class Mesh;
45 }
46
47 /*!
48  * \brief This class calls the NETGEN mesher of OCC geometry
49  */
50
51 class NETGENPLUGIN_EXPORT NETGENPlugin_Mesher 
52 {
53  public:
54   // ---------- PUBLIC METHODS ----------
55
56   NETGENPlugin_Mesher (SMESH_Mesh* mesh, const TopoDS_Shape& aShape,
57                        const bool isVolume);
58
59   void SetParameters(const NETGENPlugin_Hypothesis* hyp);
60   void SetParameters(const NETGENPlugin_SimpleHypothesis_2D* hyp);
61
62   bool Compute();
63
64   static void PrepareOCCgeometry(netgen::OCCGeometry&          occgeom,
65                                  const TopoDS_Shape&           shape,
66                                  SMESH_Mesh&                   mesh,
67                                  std::list< SMESH_subMesh* > * meshedSM=0);
68
69   static void RemoveTmpFiles();
70
71 protected:
72
73   bool fillNgMesh(netgen::OCCGeometry&                occgeom,
74                   netgen::Mesh&                       ngMesh,
75                   std::vector<SMDS_MeshNode*>&        nodeVec,
76                   const std::list< SMESH_subMesh* > & meshedSM);
77
78   void defaultParameters();
79
80
81  private:
82   SMESH_Mesh*          _mesh;
83   const TopoDS_Shape&  _shape;
84   bool                 _isVolume;
85   bool                 _optimize;
86
87   const NETGENPlugin_SimpleHypothesis_2D * _simpleHyp;
88   std::map< int, std::pair<int,int> >      _faceDescriptors;
89 };
90
91 #endif