diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 3402d98088..f91c8818d8 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -876,7 +876,7 @@ void ApplyLineFeatureGeometry::operator() (m2::PointD const & point) { static double minSegmentLength = pow(4.0 * df::VisualParams::Instance().GetVisualScale(), 2); if (m_simplify && - ((m_spline->GetSize() > 1 && point.SquareLength(m_lastAddedPoint) * m_sqrScale < minSegmentLength) || + ((m_spline->GetSize() > 1 && point.SquaredLength(m_lastAddedPoint) * m_sqrScale < minSegmentLength) || m_spline->IsPrelonging(point))) { m_spline->ReplacePoint(point); diff --git a/drape_frontend/frontend_renderer.cpp b/drape_frontend/frontend_renderer.cpp index 077e8e2eeb..b59fd2f198 100755 --- a/drape_frontend/frontend_renderer.cpp +++ b/drape_frontend/frontend_renderer.cpp @@ -1128,7 +1128,7 @@ FeatureID FrontendRenderer::GetVisiblePOI(m2::RectD const & pixelRect) FeatureID featureID; for (ref_ptr handle : selectResult) { - double const curDist = pt.SquareLength(handle->GetPivot(screen, screen.isPerspective())); + double const curDist = pt.SquaredLength(handle->GetPivot(screen, screen.isPerspective())); if (curDist < dist) { dist = curDist; diff --git a/drape_frontend/path_text_handle.cpp b/drape_frontend/path_text_handle.cpp index 403814605b..0fae95e0f2 100644 --- a/drape_frontend/path_text_handle.cpp +++ b/drape_frontend/path_text_handle.cpp @@ -228,7 +228,7 @@ m2::Spline::iterator PathTextContext::GetProjectedPoint(std::vector nearestStep = step + t; } - double const dist = pt.SquareLength(nearestPt); + double const dist = pt.SquaredLength(nearestPt); if (dist < minDist) { minDist = dist; diff --git a/drape_frontend/user_event_stream.cpp b/drape_frontend/user_event_stream.cpp index 69eebcfc9d..66b3306ac7 100644 --- a/drape_frontend/user_event_stream.cpp +++ b/drape_frontend/user_event_stream.cpp @@ -765,7 +765,7 @@ bool UserEventStream::TouchDown(array const & touches) bool UserEventStream::CheckDrag(array const & touches, double threshold) const { - return m_startDragOrg.SquareLength(m2::PointD(touches[0].m_location)) > threshold; + return m_startDragOrg.SquaredLength(m2::PointD(touches[0].m_location)) > threshold; } bool UserEventStream::TouchMove(array const & touches) @@ -796,8 +796,8 @@ bool UserEventStream::TouchMove(array const & touches) if (touchCount == 2) { auto const threshold = static_cast(kDragThreshold); - if (m_twoFingersTouches[0].SquareLength(touches[0].m_location) > threshold || - m_twoFingersTouches[1].SquareLength(touches[1].m_location) > threshold) + if (m_twoFingersTouches[0].SquaredLength(touches[0].m_location) > threshold || + m_twoFingersTouches[1].SquaredLength(touches[1].m_location) > threshold) BeginScale(touches[0], touches[1]); else isMapTouch = false; diff --git a/drape_frontend/user_mark_shapes.cpp b/drape_frontend/user_mark_shapes.cpp index c91fd3beb8..b3338de24b 100644 --- a/drape_frontend/user_mark_shapes.cpp +++ b/drape_frontend/user_mark_shapes.cpp @@ -256,7 +256,7 @@ m2::SharedSpline SimplifySpline(UserLineRenderParams const & renderInfo, double m2::PointD lastAddedPoint; for (auto const & point : renderInfo.m_spline->GetPath()) { - if (spline->GetSize() > 1 && point.SquareLength(lastAddedPoint) * sqrScale < kMinSegmentLength) + if (spline->GetSize() > 1 && point.SquaredLength(lastAddedPoint) * sqrScale < kMinSegmentLength) { spline->ReplacePoint(point); } diff --git a/feature_list/feature_list.cpp b/feature_list/feature_list.cpp index c3ca02bea0..9e96ef4c2a 100644 --- a/feature_list/feature_list.cpp +++ b/feature_list/feature_list.cpp @@ -43,7 +43,7 @@ public: void operator()(m2::PointD const & point) { - double distance = m_center.SquareLength(point); + double distance = m_center.SquaredLength(point); if (distance < m_distance) { m_distance = distance; diff --git a/generator/feature_merger.cpp b/generator/feature_merger.cpp index 2430b5b89a..16ee84552a 100644 --- a/generator/feature_merger.cpp +++ b/generator/feature_merger.cpp @@ -110,7 +110,7 @@ double MergedFeatureBuilder1::GetPriority() const double pr = 0.0; for (size_t i = 1; i < poly.size(); ++i) - pr += poly[i-1].SquareLength(poly[i]); + pr += poly[i-1].SquaredLength(poly[i]); return pr; } @@ -234,7 +234,7 @@ void FeatureMergeProcessor::DoMerge(FeatureEmitterIFace & emitter) { bool const toBack = pt.second; bool fromBegin = true; - if ((pt.first.SquareLength(pp->FirstPoint()) > pt.first.SquareLength(pp->LastPoint())) == toBack) + if ((pt.first.SquaredLength(pp->FirstPoint()) > pt.first.SquaredLength(pp->LastPoint())) == toBack) fromBegin = false; curr.AppendFeature(*pp, fromBegin, toBack); diff --git a/geometry/algorithm.cpp b/geometry/algorithm.cpp index e2b57ae2c4..c8c34ce000 100644 --- a/geometry/algorithm.cpp +++ b/geometry/algorithm.cpp @@ -62,7 +62,7 @@ void CalculatePointOnSurface::operator()(PointD const & p1, PointD const & p2, P triangleCenter += p3; triangleCenter = triangleCenter / 3.0; - double triangleDistance = m_rectCenter.SquareLength(triangleCenter); + double triangleDistance = m_rectCenter.SquaredLength(triangleCenter); if (triangleDistance <= m_squareDistanceToApproximate) { m_center = triangleCenter; diff --git a/geometry/convex_hull.cpp b/geometry/convex_hull.cpp index 1e7d867c06..4ba27dffdd 100644 --- a/geometry/convex_hull.cpp +++ b/geometry/convex_hull.cpp @@ -49,7 +49,7 @@ vector BuildConvexHull(vector points, double eps) return true; if (IsCCW(rhs, lhs, pivot, eps)) return false; - return lhs.SquareLength(pivot) < rhs.SquareLength(pivot); + return lhs.SquaredLength(pivot) < rhs.SquaredLength(pivot); }); vector hull; diff --git a/geometry/distance.hpp b/geometry/distance.hpp index 81370f86e9..8cc6da0538 100644 --- a/geometry/distance.hpp +++ b/geometry/distance.hpp @@ -43,13 +43,13 @@ public: inline PointT const & P1() const { return m_P1; } protected: - template static double SquareLength(VectorT const & v) + template static double SquaredLength(VectorT const & v) { return DotProduct(v, v); } template static double Length(VectorT const & v) { - return sqrt(SquareLength(v)); + return sqrt(SquaredLength(v)); } double Distance(PointD const & v) const { @@ -75,12 +75,12 @@ public: if (t <= 0) { // Y is closest to P0. - return this->SquareLength(YmP0); + return this->SquaredLength(YmP0); } if (t >= this->m_D2) { // Y is closest to P1. - return this->SquareLength(Y - this->m_P1); + return this->SquaredLength(Y - this->m_P1); } // Closest point is interior to segment. diff --git a/geometry/geometry_tests/distance_test.cpp b/geometry/geometry_tests/distance_test.cpp index aff4236b85..a3f3cb1794 100644 --- a/geometry/geometry_tests/distance_test.cpp +++ b/geometry/geometry_tests/distance_test.cpp @@ -32,7 +32,7 @@ UNIT_TEST(DistanceToLineSquare2D_Integer) TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(2, 1)), 0.0, ()); TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(4, 4)), 13.0, ()); - double const sqSin = 4.0 / m2::PointI(-1, 3).SquareLength(m2::PointI(2, 1)); + double const sqSin = 4.0 / m2::PointI(-1, 3).SquaredLength(m2::PointI(2, 1)); TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(0, 1)), 4.0*sqSin, ()); TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(-1, 1)), 9.0*sqSin, ()); } diff --git a/geometry/point2d.hpp b/geometry/point2d.hpp index c09fa02c1b..7afec7c336 100644 --- a/geometry/point2d.hpp +++ b/geometry/point2d.hpp @@ -36,14 +36,13 @@ namespace m2 return ((fabs(x - p.x) < eps) && (fabs(y - p.y) < eps)); } - // TODO (@y, @m): rename to SquaredLength. - T SquareLength(Point const & p) const { return pow(x - p.x, 2) + pow(y - p.y, 2); } + T SquaredLength(Point const & p) const { return pow(x - p.x, 2) + pow(y - p.y, 2); } T SquaredLength() const { return x * x + y * y; } double Length(Point const & p) const { - return sqrt(SquareLength(p)); + return sqrt(SquaredLength(p)); } bool IsAlmostZero() const diff --git a/indexer/displacement_manager.hpp b/indexer/displacement_manager.hpp index 48bff14455..b40ac59aba 100644 --- a/indexer/displacement_manager.hpp +++ b/indexer/displacement_manager.hpp @@ -117,7 +117,7 @@ public: acceptedNodes.ForEachInRect(m2::Inflate(displacementRect, {delta, delta}), [&isDisplaced, &node, &squaredDelta, &scale](DisplaceableNode const & rhs) { - if (node.m_center.SquareLength(rhs.m_center) < squaredDelta && rhs.m_maxScale > scale) + if (node.m_center.SquaredLength(rhs.m_center) < squaredDelta && rhs.m_maxScale > scale) isDisplaced = true; }); if (isDisplaced) diff --git a/map/bookmark_manager.cpp b/map/bookmark_manager.cpp index e3e14790b9..6bf2d7847c 100644 --- a/map/bookmark_manager.cpp +++ b/map/bookmark_manager.cpp @@ -117,7 +117,7 @@ public: m2::PointD const & org = mark->GetPivot(); if (m_rect.IsPointInside(org)) { - double minDCandidate = m_globalCenter.SquareLength(org); + double minDCandidate = m_globalCenter.SquaredLength(org); if (minDCandidate < m_minD) { *m_mark = mark; diff --git a/map/framework.cpp b/map/framework.cpp index 028b342258..70579426bb 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -1540,7 +1540,7 @@ size_t Framework::ShowSearchResults(search::Results const & results) Result const & r = results[i]; if (r.HasPoint()) { - double const dist = center.SquareLength(r.GetFeatureCenter()); + double const dist = center.SquaredLength(r.GetFeatureCenter()); if (dist < minDistance) { minDistance = dist; diff --git a/openlr/router.cpp b/openlr/router.cpp index 0b45575725..e77df0ad2b 100644 --- a/openlr/router.cpp +++ b/openlr/router.cpp @@ -572,7 +572,7 @@ double Router::GetCoverage(m2::PointD const & u, m2::PointD const & v, It b, It double const kLengthThresholdM = 1; m2::PointD const uv = v - u; - double const sqlen = u.SquareLength(v); + double const sqlen = u.SquaredLength(v); if (MercatorBounds::DistanceOnEarth(u, v) < kLengthThresholdM) return 0; diff --git a/routing/nearest_edge_finder.cpp b/routing/nearest_edge_finder.cpp index 60d1ca8c87..0c76f58502 100644 --- a/routing/nearest_edge_finder.cpp +++ b/routing/nearest_edge_finder.cpp @@ -28,7 +28,7 @@ void NearestEdgeFinder::AddInformationSource(FeatureID const & featureId, IRoadG segProj.SetBounds(roadInfo.m_junctions[i - 1].GetPoint(), roadInfo.m_junctions[i].GetPoint()); m2::PointD const pt = segProj(m_point); - double const d = m_point.SquareLength(pt); + double const d = m_point.SquaredLength(pt); if (d < res.m_dist) { Junction const & segStart = roadInfo.m_junctions[i - 1]; diff --git a/search/house_detector.cpp b/search/house_detector.cpp index c2a2df5988..b12a0886b5 100644 --- a/search/house_detector.cpp +++ b/search/house_detector.cpp @@ -136,8 +136,8 @@ pair GetConnectionAngleAndDistance(bool & isBeg, Street const * m2::PointD const & p1 = isBeg ? s1->m_points.front() : s1->m_points.back(); m2::PointD const & p0 = isBeg ? s1->m_points[1] : s1->m_points[s1->m_points.size()-2]; - double const d0 = p1.SquareLength(s2->m_points.front()); - double const d2 = p1.SquareLength(s2->m_points.back()); + double const d0 = p1.SquaredLength(s2->m_points.front()); + double const d2 = p1.SquaredLength(s2->m_points.back()); isBeg = (d0 < d2); m2::PointD const & p2 = isBeg ? s2->m_points[1] : s2->m_points[s2->m_points.size()-2]; @@ -784,7 +784,7 @@ HouseDetector::StreetPtr HouseDetector::FindConnection(Street const * st, bool b for (size_t i = 0; i < m_end2st.size(); ++i) { - if (pt.SquareLength(m_end2st[i].first) > minSqDistance) + if (pt.SquaredLength(m_end2st[i].first) > minSqDistance) continue; Street * current = m_end2st[i].second;