Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
64
libs/geometry/point_with_altitude.cpp
Normal file
64
libs/geometry/point_with_altitude.cpp
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
#include "geometry/point_with_altitude.hpp"
|
||||
|
||||
#include "geometry/mercator.hpp"
|
||||
|
||||
#include <boost/functional/hash.hpp>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
namespace geometry
|
||||
{
|
||||
PointWithAltitude::PointWithAltitude() : m_point(m2::PointD::Zero()), m_altitude(kDefaultAltitudeMeters) {}
|
||||
|
||||
PointWithAltitude::PointWithAltitude(m2::PointD const & point, Altitude altitude /* = kDefaultAltitudeMeters */)
|
||||
: m_point(point)
|
||||
, m_altitude(altitude)
|
||||
{}
|
||||
|
||||
bool PointWithAltitude::operator==(PointWithAltitude const & r) const
|
||||
{
|
||||
return m_point == r.m_point && m_altitude == r.m_altitude;
|
||||
}
|
||||
|
||||
bool PointWithAltitude::operator<(PointWithAltitude const & r) const
|
||||
{
|
||||
if (m_point != r.m_point)
|
||||
return m_point < r.m_point;
|
||||
|
||||
return m_altitude < r.m_altitude;
|
||||
}
|
||||
|
||||
ms::LatLon PointWithAltitude::ToLatLon() const
|
||||
{
|
||||
return ms::LatLon(mercator::YToLat(m_point.y), mercator::XToLon(m_point.x));
|
||||
}
|
||||
|
||||
std::string DebugPrint(PointWithAltitude const & r)
|
||||
{
|
||||
std::ostringstream ss;
|
||||
ss << "PointWithAltitude{point:" << DebugPrint(r.m_point) << ", altitude:" << r.GetAltitude() << "}";
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
PointWithAltitude MakePointWithAltitudeForTesting(m2::PointD const & point)
|
||||
{
|
||||
return PointWithAltitude(point, kDefaultAltitudeMeters);
|
||||
}
|
||||
|
||||
bool AlmostEqualAbs(PointWithAltitude const & lhs, PointWithAltitude const & rhs, double eps)
|
||||
{
|
||||
return AlmostEqualAbs(lhs.GetPoint(), rhs.GetPoint(), eps) && lhs.GetAltitude() == rhs.GetAltitude();
|
||||
}
|
||||
} // namespace geometry
|
||||
|
||||
namespace std
|
||||
{
|
||||
size_t hash<geometry::PointWithAltitude>::operator()(geometry::PointWithAltitude const & point) const
|
||||
{
|
||||
size_t seed = 0;
|
||||
boost::hash_combine(seed, point.GetPoint().x);
|
||||
boost::hash_combine(seed, point.GetPoint().y);
|
||||
boost::hash_combine(seed, point.GetAltitude());
|
||||
return seed;
|
||||
}
|
||||
} // namespace std
|
||||
Loading…
Add table
Add a link
Reference in a new issue