Horizon
keep_slope_util.hpp
1 #pragma once
2 #include "common/common.hpp"
3 
4 namespace horizon {
5 class KeepSlopeInfo {
6 public:
7  std::pair<Coordi, Coordi> get_pos(const Coordd &shift) const;
8 
9 protected:
10  Coordi pos_from2;
11  Coordi pos_to2;
12  Coordi pos_from_orig;
13  Coordi pos_to_orig;
14 };
15 } // namespace horizon
Definition: keep_slope_util.hpp:5