Skip to content
Snippets Groups Projects
Commit 59e084d0 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent d90d79b9
Branches
Tags
No related merge requests found
// $Id: meshGFaceExtruded.cpp,v 1.12 2006-11-28 03:12:38 geuzaine Exp $ // $Id: meshGFaceExtruded.cpp,v 1.13 2006-11-28 03:35:29 geuzaine Exp $
// //
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// //
...@@ -153,7 +153,7 @@ int MeshExtrudedSurface(GFace *gf) ...@@ -153,7 +153,7 @@ int MeshExtrudedSurface(GFace *gf)
// build a set with all the vertices on the boundary of gf // build a set with all the vertices on the boundary of gf
double old_tol = MVertexLessThanLexicographic::tolerance; double old_tol = MVertexLessThanLexicographic::tolerance;
MVertexLessThanLexicographic::tolerance = 1.e-8 * CTX.lc; MVertexLessThanLexicographic::tolerance = 1.e-12 * CTX.lc;
std::set<MVertex*, MVertexLessThanLexicographic> pos; std::set<MVertex*, MVertexLessThanLexicographic> pos;
std::list<GEdge*> edges = gf->edges(); std::list<GEdge*> edges = gf->edges();
std::list<GEdge*>::iterator it = edges.begin(); std::list<GEdge*>::iterator it = edges.begin();
......
// $Id: meshGRegionExtruded.cpp,v 1.5 2006-11-28 03:12:38 geuzaine Exp $ // $Id: meshGRegionExtruded.cpp,v 1.6 2006-11-28 03:35:29 geuzaine Exp $
// //
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
// //
...@@ -177,7 +177,7 @@ int MeshExtrudedVolume(GRegion *gr) ...@@ -177,7 +177,7 @@ int MeshExtrudedVolume(GRegion *gr)
// build a set with all the vertices on the boundary of gr // build a set with all the vertices on the boundary of gr
double old_tol = MVertexLessThanLexicographic::tolerance; double old_tol = MVertexLessThanLexicographic::tolerance;
MVertexLessThanLexicographic::tolerance = 1.e-8 * CTX.lc; MVertexLessThanLexicographic::tolerance = 1.e-12 * CTX.lc;
std::set<MVertex*, MVertexLessThanLexicographic> pos; std::set<MVertex*, MVertexLessThanLexicographic> pos;
std::list<GFace*> faces = gr->faces(); std::list<GFace*> faces = gr->faces();
std::list<GFace*>::iterator it = faces.begin(); std::list<GFace*>::iterator it = faces.begin();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment