Skip to content
Snippets Groups Projects
Commit 50c81fbe authored by Éric Béchet's avatar Éric Béchet
Browse files

fix compilation when ENABLE_MESH=OFF

parent 74da0d82
No related branches found
No related tags found
No related merge requests found
...@@ -13,10 +13,6 @@ ...@@ -13,10 +13,6 @@
#include "meshGFaceDelaunayInsertion.h" #include "meshGFaceDelaunayInsertion.h"
#endif #endif
const double GMSH_ThinLayerFixMeshPlugin::epsilon = 0.00000000001;
const double GMSH_ThinLayerFixMeshPlugin::angleMax = 0.9;
const double GMSH_ThinLayerFixMeshPlugin::distP2PMax = 5.0;
extern "C" extern "C"
{ {
GMSH_Plugin *GMSH_RegisterThinLayerFixMeshPlugin() GMSH_Plugin *GMSH_RegisterThinLayerFixMeshPlugin()
...@@ -43,6 +39,10 @@ StringXNumber *GMSH_ThinLayerFixMeshPlugin::getOption(int iopt) ...@@ -43,6 +39,10 @@ StringXNumber *GMSH_ThinLayerFixMeshPlugin::getOption(int iopt)
#if defined(HAVE_MESH) #if defined(HAVE_MESH)
const double GMSH_ThinLayerFixMeshPlugin::epsilon = 0.00000000001;
const double GMSH_ThinLayerFixMeshPlugin::angleMax = 0.9;
const double GMSH_ThinLayerFixMeshPlugin::distP2PMax = 5.0;
CorrespVerticesFixMesh::CorrespVerticesFixMesh(){ CorrespVerticesFixMesh::CorrespVerticesFixMesh(){
// std::cout<<"started init CorrespVerticesFixMesh"<<std::endl; // std::cout<<"started init CorrespVerticesFixMesh"<<std::endl;
// this->EndTriangle = faceXtetFM(); // this->EndTriangle = faceXtetFM();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment