0588de76bb
Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D526
27 lines
495 B
C++
27 lines
495 B
C++
#pragma once
|
|
|
|
#include <ostream>
|
|
|
|
namespace kd {
|
|
|
|
template <class T>
|
|
class Point {
|
|
public:
|
|
Point(T latitude, T longitude) : latitude(latitude), longitude(longitude) {}
|
|
|
|
// latitude
|
|
// y
|
|
// ^
|
|
// |
|
|
// 0---> x longitude
|
|
|
|
T latitude;
|
|
T longitude;
|
|
|
|
/// 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 << ')';
|
|
}
|
|
};
|
|
}
|