From 23cba423c352702e39a43de3b1c4f1a52e315fae Mon Sep 17 00:00:00 2001 From: Daria Volvenkova Date: Fri, 4 Mar 2016 18:28:58 +0300 Subject: [PATCH] Do not clip buildings triangles. --- drape_frontend/apply_feature_functors.cpp | 14 +-- geometry/clipping.cpp | 108 +++++++++++----------- 2 files changed, 62 insertions(+), 60 deletions(-) diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 319a8977ef..f97d6dde81 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -380,18 +380,20 @@ void ApplyAreaFeature::ProcessBuildingPolygon(m2::PointD const & p1, m2::PointD if (fabs(crossProduct) < kEps) return; - auto const clipFunctor = [this](m2::PointD const & p1, m2::PointD const & p2, m2::PointD const & p3) + if (crossProduct < 0) { m_triangles.push_back(p1); m_triangles.push_back(p2); m_triangles.push_back(p3); BuildEdges(GetIndex(p1), GetIndex(p2), GetIndex(p3)); - }; - - if (crossProduct < 0) - m2::ClipTriangleByRect(m_tileRect, p1, p2, p3, clipFunctor); + } else - m2::ClipTriangleByRect(m_tileRect, p1, p3, p2, clipFunctor); + { + m_triangles.push_back(p1); + m_triangles.push_back(p3); + m_triangles.push_back(p2); + BuildEdges(GetIndex(p1), GetIndex(p3), GetIndex(p2)); + } } int ApplyAreaFeature::GetIndex(m2::PointD const & pt) diff --git a/geometry/clipping.cpp b/geometry/clipping.cpp index d64cd27069..f400511da7 100644 --- a/geometry/clipping.cpp +++ b/geometry/clipping.cpp @@ -7,35 +7,6 @@ namespace m2 { using AddPoligonPoint = function; -using InsertCorners = function; - -bool IntersectEdge(m2::RectD const & rect, m2::PointD const & pp1, m2::PointD const & pp2, - InsertCorners const & insertCorners, AddPoligonPoint const & addPoligonPoint, - int prevClipCode, int nextClipCode, int & firstClipCode, int & lastClipCode) -{ - m2::PointD p1 = pp1; - m2::PointD p2 = pp2; - - if (m2::Intersect(rect, p1, p2, firstClipCode, lastClipCode)) - { - if (firstClipCode != 0 && prevClipCode != 0 && ((firstClipCode & prevClipCode) == 0)) - insertCorners(prevClipCode, firstClipCode); - - addPoligonPoint(p1); - addPoligonPoint(p2); - - if (lastClipCode != 0 && nextClipCode != 0 && ((lastClipCode & nextClipCode) == 0) && - firstClipCode != lastClipCode && prevClipCode != nextClipCode) - insertCorners(lastClipCode, nextClipCode); - - return true; - } - else if (prevClipCode != 0 && nextClipCode != 0) - { - insertCorners(prevClipCode, nextClipCode); - } - return false; -} int GetRectSideIndex(int code) { @@ -48,6 +19,56 @@ int GetRectSideIndex(int code) return 3; } +void InsertCorners(vector const & corners, + m2::PointD const & p1, m2::PointD const & p2, m2::PointD const & p3, + AddPoligonPoint const & addPoligonPoint, int code1, int code2) +{ + int cornerInd = GetRectSideIndex(code1); + int endCornerInd = GetRectSideIndex(code2); + + if (!IsPointInsideTriangle(corners[cornerInd], p1, p2, p3)) + { + if (!IsPointInsideTriangle(corners[endCornerInd], p1, p2, p3)) + return; + swap(cornerInd, endCornerInd); + } + + while (cornerInd != endCornerInd) + { + addPoligonPoint(corners[cornerInd]); + cornerInd = (cornerInd + 1) % 4; + } +} + +bool IntersectEdge(m2::RectD const & rect, vector const & corners, + m2::PointD const & pp1, m2::PointD const & pp2, m2::PointD const & pp3, + AddPoligonPoint const & addPoligonPoint, + int prevClipCode, int nextClipCode, int & firstClipCode, int & lastClipCode) +{ + m2::PointD p1 = pp1; + m2::PointD p2 = pp2; + + if (m2::Intersect(rect, p1, p2, firstClipCode, lastClipCode)) + { + if (firstClipCode != 0 && prevClipCode != 0 && ((firstClipCode & prevClipCode) == 0)) + InsertCorners(corners, pp1, pp2, pp3, addPoligonPoint, prevClipCode, firstClipCode); + + addPoligonPoint(p1); + addPoligonPoint(p2); + + if (lastClipCode != 0 && nextClipCode != 0 && ((lastClipCode & nextClipCode) == 0) && + firstClipCode != lastClipCode && prevClipCode != nextClipCode) + InsertCorners(corners, pp1, pp2, pp3, addPoligonPoint, lastClipCode, nextClipCode); + + return true; + } + else if (prevClipCode != 0 && nextClipCode != 0) + { + InsertCorners(corners, pp1, pp2, pp3, addPoligonPoint, prevClipCode, nextClipCode); + } + return false; +} + void ClipTriangleByRect(m2::RectD const & rect, m2::PointD const & p1, m2::PointD const & p2, m2::PointD const & p3, ClipTriangleByRectResultIt const & resultIterator) @@ -61,11 +82,8 @@ void ClipTriangleByRect(m2::RectD const & rect, m2::PointD const & p1, return; } - const int kAveragePoligonSize = 3; const double kEps = 1e-8; - vector poligon; - poligon.reserve(kAveragePoligonSize); auto const addPoligonPoint = [&poligon, kEps](m2::PointD const & pt) { if (poligon.empty() || !poligon.back().EqualDxDy(pt, kEps)) @@ -73,36 +91,18 @@ void ClipTriangleByRect(m2::RectD const & rect, m2::PointD const & p1, }; vector const corners = { rect.LeftTop(), rect.RightTop(), rect.RightBottom(), rect.LeftBottom() }; - auto const insertCorners = [&corners, rect, p1, p2, p3, addPoligonPoint](int code1, int code2) - { - int cornerInd = GetRectSideIndex(code1); - int endCornerInd = GetRectSideIndex(code2); - - if (!IsPointInsideTriangle(corners[cornerInd], p1, p2, p3)) - { - if (!IsPointInsideTriangle(corners[endCornerInd], p1, p2, p3)) - return; - swap(cornerInd, endCornerInd); - } - - while (cornerInd != endCornerInd) - { - addPoligonPoint(corners[cornerInd]); - cornerInd = (cornerInd + 1) % 4; - } - }; int firstClipCode[3]; int lastClipCode[3]; bool intersected[3]; - intersected[0] = IntersectEdge(rect, p1, p2, insertCorners, addPoligonPoint, + intersected[0] = IntersectEdge(rect, corners, p1, p2, p3, addPoligonPoint, 0, 0, firstClipCode[0], lastClipCode[0]); - intersected[1] = IntersectEdge(rect, p2, p3, insertCorners, addPoligonPoint, + intersected[1] = IntersectEdge(rect, corners, p2, p3, p1, addPoligonPoint, lastClipCode[0], 0, firstClipCode[1], lastClipCode[1]); - intersected[2] = IntersectEdge(rect, p3, p1, insertCorners, addPoligonPoint, + intersected[2] = IntersectEdge(rect, corners, p3, p1, p2, addPoligonPoint, lastClipCode[1] != 0 ? lastClipCode[1] : lastClipCode[0], firstClipCode[0] != 0 ? firstClipCode[0] : firstClipCode[1], firstClipCode[2], lastClipCode[2]); @@ -119,7 +119,7 @@ void ClipTriangleByRect(m2::RectD const & rect, m2::PointD const & p1, } if (intersectCount == 1 && intersected[2]) - insertCorners(lastClipCode[2], firstClipCode[2]); + InsertCorners(corners, p1, p2, p3, addPoligonPoint, lastClipCode[2], firstClipCode[2]); if (!poligon.empty() && poligon.back().EqualDxDy(poligon[0], kEps)) poligon.pop_back();