memgraph/poc/kdtree/point.hpp

27 lines
495 B
C++
Raw Normal View History

#pragma once
2015-06-19 16:04:42 +08:00
#include <ostream>
namespace kd {
template <class T>
class Point {
public:
Point(T latitude, T longitude) : latitude(latitude), longitude(longitude) {}
2015-06-19 16:04:42 +08:00
// latitude
// y
// ^
// |
// 0---> x longitude
2015-06-19 16:04:42 +08:00
T latitude;
T longitude;
2015-06-19 16:04:42 +08:00
/// nice stream formatting with the standard << operator
friend std::ostream& operator<<(std::ostream& stream, const Point& p) {
return stream << "(lat: " << p.latitude << ", lng: " << p.longitude << ')';
}
2015-06-19 16:04:42 +08:00
};
}