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

cleanup

parent 80ea207b
No related branches found
No related tags found
No related merge requests found
...@@ -1337,19 +1337,17 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete, bool onlyVisi ...@@ -1337,19 +1337,17 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete, bool onlyVisi
int counter = 1; int counter = 1;
for(GModel::eiter it = m->firstEdge(); it != m->lastEdge(); ++it) { for(GModel::eiter it = m->firstEdge(); it != m->lastEdge(); ++it) {
Msg::StatusBar(2, true, "Meshing curves order %d (%i/%i)...", Msg::Info("Meshing curves order %d (%i/%i)...", order, counter, m->getNumEdges());
order, counter, m->getNumEdges());
counter++; counter++;
if (onlyVisible && !(*it)->getVisibility())continue; if (onlyVisible && !(*it)->getVisibility()) continue;
setHighOrder(*it, edgeVertices, linear, nPts); setHighOrder(*it, edgeVertices, linear, nPts);
} }
counter = 1; counter = 1;
for(GModel::fiter it = m->firstFace(); it != m->lastFace(); ++it) { for(GModel::fiter it = m->firstFace(); it != m->lastFace(); ++it) {
Msg::StatusBar(2, true, "Meshing surfaces order %d (%i/%i)...", Msg::Info("Meshing surfaces order %d (%i/%i)...", order, counter, m->getNumFaces());
order, counter, m->getNumFaces());
counter++; counter++;
if (onlyVisible && !(*it)->getVisibility())continue; if (onlyVisible && !(*it)->getVisibility()) continue;
setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts); setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts);
} }
...@@ -1365,8 +1363,7 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete, bool onlyVisi ...@@ -1365,8 +1363,7 @@ void SetOrderN(GModel *m, int order, bool linear, bool incomplete, bool onlyVisi
counter = 1; counter = 1;
for(GModel::riter it = m->firstRegion(); it != m->lastRegion(); ++it) { for(GModel::riter it = m->firstRegion(); it != m->lastRegion(); ++it) {
Msg::StatusBar(2, true, "Meshing volumes order %d (%i/%i)...", Msg::Info("Meshing volumes order %d (%i/%i)...", order, counter, m->getNumRegions());
order, counter, m->getNumRegions());
counter++; counter++;
if (onlyVisible && !(*it)->getVisibility())continue; if (onlyVisible && !(*it)->getVisibility())continue;
setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts); setHighOrder(*it, edgeVertices, faceVertices, linear, incomplete, nPts);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment