Salome HOME
Merge from V6_main 01/04/2013
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_NETGEN_2D_ONLY.hxx
1 // Copyright (C) 2007-2013  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.
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 <SMESH_Algo.hxx>
28 #include <SMESH_Mesh.hxx>
29
30 class StdMeshers_MaxElementArea;
31 class StdMeshers_LengthFromEdges;
32 class NETGENPlugin_Hypothesis_2D;
33
34 /*!
35  * \brief Mesher generating 2D elements on a geometrical face taking
36  * into account pre-existing nodes on face boundaries
37  *
38  * Historically, NETGENPlugin_NETGEN_2D is actually 1D-2D, that is why
39  * the class is named NETGENPlugin_NETGEN_2D_ONLY. Renaming is useless as
40  * algorithm field "_name" can't be changed
41  */
42 class NETGENPlugin_NETGEN_2D_ONLY: public SMESH_2D_Algo
43 {
44 public:
45   NETGENPlugin_NETGEN_2D_ONLY(int hypId, int studyId, SMESH_Gen* gen);
46   virtual ~NETGENPlugin_NETGEN_2D_ONLY();
47
48   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
49                                const TopoDS_Shape& aShape,
50                                Hypothesis_Status&  aStatus);
51
52   virtual bool Compute(SMESH_Mesh&         aMesh,
53                        const TopoDS_Shape& aShape);
54
55 #ifdef WITH_SMESH_CANCEL_COMPUTE
56   virtual void CancelCompute();
57 #endif
58
59   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
60                         MapShapeNbElems& aResMap);
61
62 protected:
63   const StdMeshers_MaxElementArea*       _hypMaxElementArea;
64   const StdMeshers_LengthFromEdges*      _hypLengthFromEdges;
65   const SMESHDS_Hypothesis*              _hypQuadranglePreference;
66   const NETGENPlugin_Hypothesis_2D*      _hypParameters;
67 };
68
69 #endif