diff --git a/geometry/geometry_tests/geometry_tests.pro b/geometry/geometry_tests/geometry_tests.pro index f7621d6699..29900d8b6d 100644 --- a/geometry/geometry_tests/geometry_tests.pro +++ b/geometry/geometry_tests/geometry_tests.pro @@ -33,3 +33,4 @@ SOURCES += \ tree_test.cpp \ polygon_test.cpp \ region_test.cpp \ + rect_test.cpp diff --git a/geometry/geometry_tests/rect_test.cpp b/geometry/geometry_tests/rect_test.cpp new file mode 100644 index 0000000000..c56533e382 --- /dev/null +++ b/geometry/geometry_tests/rect_test.cpp @@ -0,0 +1,23 @@ +#include "../../base/SRC_FIRST.hpp" +#include "../../testing/testing.hpp" +#include "../rect2d.hpp" + +UNIT_TEST(Rect_Intersect) +{ + m2::RectD r(0, 0, 100, 100); + m2::RectD r1(10, 10, 20, 20); + + TEST(r1.IsIntersect(r), ()); + TEST(r.IsIntersect(r1), ()); + + m2::RectD r2(-100, -100, -50, -50); + + TEST(!r2.IsIntersect(r), ()); + TEST(!r.IsIntersect(r2), ()); + + m2::RectD r3(-10, -10, 10, 10); + + TEST(r3.IsIntersect(r), ()); + TEST(r.IsIntersect(r3), ()); +} + diff --git a/geometry/rect2d.hpp b/geometry/rect2d.hpp index 16eb0f68f8..36fcc701ee 100644 --- a/geometry/rect2d.hpp +++ b/geometry/rect2d.hpp @@ -126,6 +126,12 @@ namespace m2 return !(m_minX > pt.x || pt.x > m_maxX || m_minY > pt.y || pt.y > m_maxY); } + bool IsRectInside(Rect const & rect) const + { + return (IsPointInside(Point(rect.minX(), rect.minY())) + && IsPointInside(Point(rect.maxX(), rect.maxY()))); + } + Point Center() const { return Point((m_minX + m_maxX) / 2.0, (m_minY + m_maxY) / 2.0); } T SizeX() const { return (m_maxX - m_minX); } T SizeY() const { return (m_maxY - m_minY); }