diff --git a/geometry/angles.hpp b/geometry/angles.hpp index d56677a418..39285b7d27 100644 --- a/geometry/angles.hpp +++ b/geometry/angles.hpp @@ -1,27 +1,25 @@ #pragma once -#include #include "point2d.hpp" #include "../base/matrix.hpp" +#include "../std/cmath.hpp" + namespace ang { template struct Angle { - private: T m_val; T m_sin; T m_cos; + public: - Angle() : m_val(0), m_sin(0), m_cos(1) - {} - Angle(T const & val) : m_val(val), m_sin(::sin(val)), m_cos(::cos(val)) - {} - Angle(T const & sin, T const & cos) : m_val(::atan2(sin, cos)), m_sin(sin), m_cos(cos) - {} + Angle() : m_val(0), m_sin(0), m_cos(1) {} + Angle(T const & val) : m_val(val), m_sin(::sin(val)), m_cos(::cos(val)) {} + Angle(T const & sin, T const & cos) : m_val(::atan2(sin, cos)), m_sin(sin), m_cos(cos) {} T const & val() const { diff --git a/geometry/any_rect2d.hpp b/geometry/any_rect2d.hpp index 842e62b959..61e073445b 100644 --- a/geometry/any_rect2d.hpp +++ b/geometry/any_rect2d.hpp @@ -13,8 +13,6 @@ namespace m2 template class AnyRect { - private: - ang::Angle m_angle; Point m_i; Point m_j; @@ -36,15 +34,22 @@ namespace m2 } public: - - AnyRect() : m_i(1, 0), m_j(0, 1), m_zero(0, 0), m_rect(){} + AnyRect() : m_i(1, 0), m_j(0, 1), m_zero(0, 0), m_rect() {} /// creating from regular rect explicit AnyRect(Rect const & r) - : m_angle(0), m_i(m_angle.cos(), m_angle.sin()), m_j(-m_angle.sin(), m_angle.cos()), - m_zero(r == Rect() ? Point(0, 0) : Point(r.minX(), r.minY())), - m_rect(r == Rect() ? Rect() : Rect(0, 0, r.SizeX(), r.SizeY())) + : m_angle(0), m_i(m_angle.cos(), m_angle.sin()), m_j(-m_angle.sin(), m_angle.cos()) { + if (r.IsValid()) + { + m_zero = Point(r.minX(), r.minY()); + m_rect = Rect(0, 0, r.SizeX(), r.SizeY()); + } + else + { + m_zero = Point(0, 0); + m_rect = r; + } } AnyRect(Point const & zero, ang::Angle const & angle, Rect const & r) diff --git a/geometry/rect2d.hpp b/geometry/rect2d.hpp index 6f843f985e..6154eec94a 100644 --- a/geometry/rect2d.hpp +++ b/geometry/rect2d.hpp @@ -232,6 +232,7 @@ namespace m2 return true; } + /* bool operator < (m2::Rect const & r) const { if (m_minX != r.m_minX) @@ -245,6 +246,7 @@ namespace m2 return false; } + */ bool operator == (m2::Rect const & r) const { @@ -257,6 +259,20 @@ namespace m2 } }; + template + inline bool IsEqual(Rect const & r1, Rect const & r2, double epsX, double epsY) + { + Rect r = r1; + r.Inflate(epsX, epsY); + if (!r.IsRectInside(r2)) return false; + + r = r2; + r.Inflate(epsX, epsY); + if (!r.IsRectInside(r1)) return false; + + return true; + } + template inline m2::Rect const Add(m2::Rect const & r, m2::Point const & p) { diff --git a/indexer/feature.hpp b/indexer/feature.hpp index a0d62a9a4f..13fbd1df8f 100644 --- a/indexer/feature.hpp +++ b/indexer/feature.hpp @@ -89,8 +89,8 @@ public: inline m2::RectD GetLimitRect() const { - ASSERT ( m_LimitRect != m2::RectD::GetEmptyRect(), () ); - return m_LimitRect ; + ASSERT ( m_LimitRect.IsValid(), () ); + return m_LimitRect; } inline m2::PointD GetCenter() const