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

*** empty log message ***

parent e531a4de
No related branches found
No related tags found
No related merge requests found
...@@ -408,16 +408,15 @@ static void Mesh2D(GModel *m) ...@@ -408,16 +408,15 @@ static void Mesh2D(GModel *m)
} }
} }
// look if there a re model faces for which // look if there are model faces for which the "full quad" algo is
// full quad algo is set ON // set ON
bool fullQuad = false; bool fullQuad = false;
for(GModel::fiter it = m->firstFace() ; it!=m->lastFace(); ++it) for(GModel::fiter it = m->firstFace() ; it!=m->lastFace(); ++it)
if ( CTX.mesh.algo_recombine == 2 && (*it)->quadrangles.size()) if(CTX.mesh.algo_recombine == 2 && (*it)->quadrangles.size())
fullQuad = true; fullQuad = true;
if (fullQuad)RefineMesh(m,false,true); if(fullQuad) RefineMesh(m, false, true);
// gmshCollapseSmallEdges (*m);
// gmshCollapseSmallEdges (*m);
double t2 = Cpu(); double t2 = Cpu();
CTX.mesh_timer[1] = t2 - t1; CTX.mesh_timer[1] = t2 - t1;
......
$Id: VERSIONS.txt,v 1.19 2008-11-25 17:18:33 geuzaine Exp $ $Id: VERSIONS.txt,v 1.20 2008-11-28 18:49:10 geuzaine Exp $
2.2.7 (?): fixed clipping planes when more than 32 views are present 2.2.7 (?): restored full-quad recombine algorithm; fixed clipping
(replaced General.Clip with {Geometry,Mesh,View}.Clip). planes when more than 32 views are present (replaced General.Clip with
{Geometry,Mesh,View}.Clip).
2.2.6 (Nov 21, 2008): better transfinite smoothing and automatic 2.2.6 (Nov 21, 2008): better transfinite smoothing and automatic
corner selection; fixed high order meshing crashes on Windows and corner selection; fixed high order meshing crashes on Windows and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment