diff --git a/Mesh/meshGEdge.cpp b/Mesh/meshGEdge.cpp index fac7b4106d081f0b628455d6ef1fc14e67e42e75..88ecbba4c8757efd93a3464ac418c50d77da751f 100644 --- a/Mesh/meshGEdge.cpp +++ b/Mesh/meshGEdge.cpp @@ -384,15 +384,14 @@ void meshGEdge::operator() (GEdge *ge) a = smoothPrimitive(ge, sqrt(CTX::instance()->mesh.smoothRatio), Points); N = std::max(ge->minimumMeshSegments() + 1, (int)(a + 1.)); } - + // force odd number of points for if blossom is used for recombination if(ge->meshAttributes.Method != MESH_TRANSFINITE && - (CTX::instance()->mesh.algoRecombine == 1 || CTX::instance()->mesh.recombineAll) && N % 2 == 0){ - // if(CTX::instance()->mesh.recombineAll){ + CTX::instance()->mesh.algoRecombine == 1 && N % 2 == 0){ + if(CTX::instance()->mesh.recombineAll){ N++; - // } - } - /* else{ + } + else{ std::list<GFace*> faces = ge->faces(); for(std::list<GFace*>::iterator it = faces.begin(); it != faces.end(); it++){ if((*it)->meshAttributes.recombine){ @@ -402,7 +401,6 @@ void meshGEdge::operator() (GEdge *ge) } } } - */ // printFandPrimitive(ge->tag(),Points);