From 4b3f4217d79a6c107351de047fe003bf11d579b6 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 1 Nov 2013 16:12:32 +0000 Subject: [PATCH] fix PViewData::fromVector (skipping tagged nodes was wrong!) --- Post/PViewDataIO.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Post/PViewDataIO.cpp b/Post/PViewDataIO.cpp index bff69ef56c..1627697213 100644 --- a/Post/PViewDataIO.cpp +++ b/Post/PViewDataIO.cpp @@ -229,8 +229,6 @@ bool PViewData::fromVector(const std::vector<std::vector<double> > &vec) for(int nod = 0; nod < getNumNodes(step, ent, ele); nod++){ double x, y, z; int tag = getNode(step, ent, ele, nod, x, y, z); - if(tag) continue; // node has already been modified - tagNode(step, ent, ele, nod, 1); for(int comp = 0; comp < getNumComponents(step, ent, ele); comp++){ if(i < (int)vec[step].size()){ setValue(step, ent, ele, nod, comp, vec[step][i++]); -- GitLab