diff --git a/geometry/geometry_tests/region_test.cpp b/geometry/geometry_tests/region_test.cpp index 5af4758335..1076631d34 100644 --- a/geometry/geometry_tests/region_test.cpp +++ b/geometry/geometry_tests/region_test.cpp @@ -56,14 +56,14 @@ void TestContainsRectangular(PointT const * arr) TEST(region.Contains(arr[3] + dx - dy), ()); } -template -void TestContaints() +template +void TestContains() { - RegionT region; - ContainsChecker checker(region); + TRegion region; + ContainsChecker checker(region); // point type - typedef typename RegionT::ValueT P; + using P = typename TRegion::ValueT; // rectangular polygon { @@ -138,11 +138,11 @@ UNIT_TEST(Region) UNIT_TEST(Region_Contains_int32) { - TestContaints(); + TestContains(); // negative triangle { - typedef m2::PointI P; + using P = m2::PointI; m2::Region

region; P const data[] = { P(1, -1), P(-2, -2), P(-3, 1) }; region.Assign(data, data + ARRAY_SIZE(data)); @@ -155,7 +155,7 @@ UNIT_TEST(Region_Contains_int32) } { - typedef m2::PointI P; + using P = m2::PointI; m2::Region

region; P const data[] = { P(1, -1), P(3, 0), P(3, 3), P(0, 3), P(0, 2), P(0, 1), P(2, 2) }; region.Assign(data, data + ARRAY_SIZE(data)); @@ -171,22 +171,23 @@ UNIT_TEST(Region_Contains_int32) UNIT_TEST(Region_Contains_uint32) { - TestContaints(); + TestContains(); } UNIT_TEST(Region_Contains_double) { - TestContaints(); + using TRegion = m2::RegionD; + using TPoint = TRegion::ValueT; + + TestContains(); { - typedef m2::PointD P; - m2::Region

region; - P const data[] = { P(0, 7), P(4, 4), P(3, 6), P(8, 6), P(8, 5), P(6, 3), P(2, 2) }; + TRegion region; + TPoint const data[] = {{0, 7}, {4, 4}, {3, 6}, {8, 6}, {8, 5}, {6, 3}, {2, 2}}; region.Assign(data, data + ARRAY_SIZE(data)); - TEST_EQUAL(region.GetRect(), m2::Rect(0, 2, 8, 7), ()); - - TEST(!region.Contains(P(3, 5)), ()); + TEST_EQUAL(region.GetRect(), m2::Rect(0, 2, 8, 7), ()); + TEST(!region.Contains({3, 5}), ()); } } diff --git a/geometry/region2d.hpp b/geometry/region2d.hpp index b3437dd735..078c215445 100644 --- a/geometry/region2d.hpp +++ b/geometry/region2d.hpp @@ -17,17 +17,22 @@ namespace m2 { struct DefEqualFloat { - // 10e-9 is two orders of magnitude more accurate than our OSM source data. - static double constexpr kPrecision = 10e-9; + // 1e-9 is two orders of magnitude more accurate than our OSM source data. + static double constexpr kPrecision = 1e-9; + template bool EqualPoints(TPoint const & p1, TPoint const & p2) const { + static_assert(std::is_floating_point::value, ""); + return my::AlmostEqualAbs(p1.x, p2.x, static_cast(kPrecision)) && my::AlmostEqualAbs(p1.y, p2.y, static_cast(kPrecision)); } template bool EqualZero(TCoord val, TCoord) const { + static_assert(std::is_floating_point::value, ""); + return my::AlmostEqualAbs(val, 0.0, static_cast(kPrecision)); } };