Salome HOME
Working version for run_mesher for netgen 3d
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_NETGEN_2D_ONLY.hxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
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      : NETGENPlugin_NETGEN_2D_ONLY.hxx
21 // Project   : SALOME
22 // Author    : Edward AGAPOV (OCC)
23 //
24 #ifndef _NETGENPlugin_NETGEN_2D_ONLY_HXX_
25 #define _NETGENPlugin_NETGEN_2D_ONLY_HXX_
26
27 #include "NETGENPlugin_Provider.hxx"
28
29 #include <SMESH_Algo.hxx>
30 #include <SMESH_Mesh.hxx>
31
32 class StdMeshers_MaxElementArea;
33 class StdMeshers_LengthFromEdges;
34 class NETGENPlugin_Hypothesis_2D;
35 class NETGENPlugin_NetgenLibWrapper;
36
37 /*!
38  * \brief Mesher generating 2D elements on a geometrical face taking
39  * into account pre-existing nodes on face boundaries
40  *
41  * Historically, NETGENPlugin_NETGEN_2D is actually 1D-2D, that is why
42  * the class is named NETGENPlugin_NETGEN_2D_ONLY. Renaming is useless as
43  * algorithm field "_name" can't be changed
44  */
45 class NETGENPlugin_NETGEN_2D_ONLY: public SMESH_2D_Algo
46 {
47 public:
48   NETGENPlugin_NETGEN_2D_ONLY(int hypId, SMESH_Gen* gen);
49   virtual ~NETGENPlugin_NETGEN_2D_ONLY();
50
51   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
52                                const TopoDS_Shape& aShape,
53                                Hypothesis_Status&  aStatus);
54
55   virtual bool Compute(SMESH_Mesh&         aMesh,
56                        const TopoDS_Shape& aShape);
57
58   virtual void CancelCompute();
59
60   virtual double GetProgress() const;
61
62   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
63                         MapShapeNbElems& aResMap);
64
65 protected:
66   const StdMeshers_MaxElementArea*       _hypMaxElementArea;
67   const StdMeshers_LengthFromEdges*      _hypLengthFromEdges;
68   const SMESHDS_Hypothesis*              _hypQuadranglePreference;
69   const NETGENPlugin_Hypothesis_2D*      _hypParameters;
70
71   double                                 _progressByTic;
72
73   Provider<netgen::MeshingParameters, 2> mparam_provider;
74   ProviderPtr<netgen::OCCGeometry, 4> occgeom_provider;
75   ProviderPtr<NETGENPlugin_NetgenLibWrapper, 2> nglib_provider;
76 };
77
78 #endif