From d143e32c6e844d75873769466d1a1d41c43a8a03 Mon Sep 17 00:00:00 2001 From: Thomas Toulorge <thomas.toulorge@mines-paristech.fr> Date: Fri, 11 Apr 2014 14:09:54 +0000 Subject: [PATCH] Removed setVolumePositive for 2D elements in "AnalyseCurvedMesh" plugin --- Plugin/AnalyseCurvedMesh.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Plugin/AnalyseCurvedMesh.cpp b/Plugin/AnalyseCurvedMesh.cpp index e1b69fba28..6f80a63fad 100644 --- a/Plugin/AnalyseCurvedMesh.cpp +++ b/Plugin/AnalyseCurvedMesh.cpp @@ -162,18 +162,6 @@ void GMSH_AnalyseCurvedMeshPlugin::checkValidity(int toDo) break; case 2 : - for (GModel::fiter it = _m->firstFace(); it != _m->lastFace(); it++) { - GFace *f = *it; - - unsigned int numType[3] = {0, 0, 0}; - f->getNumMeshElements(numType); - - for (int type = 0; type < 3; type++) { - MElement *const *el = f->getStartElementType(type); - for (unsigned int jo = 0; jo < numType[type]; jo++) - el[jo]->setVolumePositive(); - } - } for (GModel::fiter it = _m->firstFace(); it != _m->lastFace(); it++) { GFace *f = *it; unsigned int numType[3] = {0, 0, 0}; -- GitLab