SIFT
point.hpp
Go to the documentation of this file.
1 #ifndef POINT_HPP
2 #define POINT_HPP
3 
4 #include "types.hpp"
5 
6 namespace sift {
7  template <typename T, typename U>
11  class Point {
12  public:
16  T x;
17 
21  U y;
22 
23  Point() = default;
24  Point(T x, U y) : x(x), y(y) {
25 
26  }
27  };
28 }
29 #endif //POINT_HPP
Definition: point.hpp:11
T x
Definition: point.hpp:16
Point(T x, U y)
Definition: point.hpp:24
U y
Definition: point.hpp:21
Definition: algorithms.cpp:8
Point()=default