From cf1a476116e2e6bbf3145bc7bcba067228fbb25e Mon Sep 17 00:00:00 2001 From: giorgiomarcias Date: Tue, 22 Apr 2014 10:26:15 +0000 Subject: [PATCH] Corrected a bug arising when splitting a polychord with at least a 2-valence vertex (causing the polychord to blend and touch itself - wrong adjacency were computed before). --- .../algorithms/polygon_polychord_collapse.h | 23 ++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/vcg/complex/algorithms/polygon_polychord_collapse.h b/vcg/complex/algorithms/polygon_polychord_collapse.h index 0fbf999b..6bf10bab 100644 --- a/vcg/complex/algorithms/polygon_polychord_collapse.h +++ b/vcg/complex/algorithms/polygon_polychord_collapse.h @@ -990,8 +990,20 @@ public: std::queue fvAdjQueue; // face-to-vertex adjacency queue bool currentFaceBottomIsBorder = false; - // scan the polychord and add adj into queues + // map faces to lines' number vcg::face::Pos runPos = startPos; + std::map faceLineMap; + typename std::map::iterator faceLineIt; + for (size_t i = 0; i < fn; i++) { + faceLineMap.insert(std::pair(runPos.F(), i)); + runPos.FlipE(); + runPos.FlipV(); + runPos.FlipE(); + runPos.FlipF(); + } + + // scan the polychord and add adj into queues + runPos = startPos; for (size_t i = 0; i < fn; i++) { // store links to the current left face lf = runPos.F(); @@ -1004,8 +1016,13 @@ public: runPos.FlipV(); lftrV = &runPos.F()->V(runPos.VInd()); // set the current line's last face's right ff adjacency - if (!runPos.IsBorder()) - ffAdjQueue.push(FaceFaceAdj(FaceEdge(&*(firstAddedFaceIt + (i+1)*(n-1) - 1), 1), FaceEdge(runPos.FFlip(), runPos.F()->FFi(runPos.E())))); + if (!runPos.IsBorder()) { + faceLineIt = faceLineMap.find(runPos.FFlip()); + if (faceLineIt != faceLineMap.end()) // a 2-valence vertex caused the polychord to blend and touch itself + ffAdjQueue.push(FaceFaceAdj(FaceEdge(&*(firstAddedFaceIt + (i+1)*(n-1) - 1), 1), FaceEdge(&*(firstAddedFaceIt + (faceLineIt->second+1)*(n-1) - 1), 1))); + else + ffAdjQueue.push(FaceFaceAdj(FaceEdge(&*(firstAddedFaceIt + (i+1)*(n-1) - 1), 1), FaceEdge(runPos.FFlip(), runPos.F()->FFi(runPos.E())))); + } // set the current line's last face's bottom right vertex's coords (firstAddedVertexIt + (i+1)*(n-1) - 1)->P() = lvP + svP * (n - 1); // set the current line's last face's bottom right vertex