Salome HOME
partial work for netgen2d in run_mesher + corrections for netgen3d nodeVec + restorin...
[plugins/netgenplugin.git] / src / NETGENPlugin / netgen_mesher.hxx
1 // Copyright (C) 2007-2021  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, or (at your option) any later version.
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
23 //  File   : netgen_mesher.hxx
24 //  Author : Yoann AUDOUIN, EDF
25 //  Module : SMESH
26 //
27
28 #ifndef _NETGEN_MESHER_HXX_
29 #define _NETGEN_MESHER_HXX_
30
31 #include <string>
32 #include <iostream>
33
34 class TopoDS_Shape;
35 class SMESH_Mesh;
36 class SMESH_Comment;
37 class netgen_params;
38
39 int netgen2d(TopoDS_Shape &aShape,
40              SMESH_Mesh& aMesh,
41              netgen_params& aParams,
42              std::string new_element_file,
43              std::string element_orientation_file,
44              bool output_mesh);
45 int netgen2d(const std::string input_mesh_file,
46              const std::string shape_file,
47              const std::string hypo_file,
48              const std::string element_orienation_file,
49              const std::string new_element_file,
50              bool output_mesh,
51              const std::string output_mesh_file);
52
53 int netgen3d(TopoDS_Shape &aShape,
54              SMESH_Mesh& aMesh,
55              netgen_params& aParams,
56              std::string new_element_file,
57              std::string element_orientation_file,
58              bool output_mesh);
59 int netgen3d(const std::string input_mesh_file,
60              const std::string shape_file,
61              const std::string hypo_file,
62              const std::string element_orienation_file,
63              const std::string new_element_file,
64              bool output_mesh,
65              const std::string output_mesh_file);
66
67 //TODO: Tmp function replace by real error handling
68 int error(int error_type, std::string msg);
69 int error(const SMESH_Comment& comment);
70
71 #endif