Horizon
keep_slope_util.hpp
1 #pragma once
2 #include "common/common.hpp"
3 
4 namespace horizon {
5 class KeepSlopeInfo {
6 public:
7  struct Position {
8  Coordi from;
9  Coordi to;
10  Coordi arc_center;
11  };
12  Position get_pos(const Coordd &shift) const;
13 
14 protected:
15  Coordi pos_from2;
16  Coordi pos_to2;
17  Coordi pos_from_orig;
18  Coordi pos_to_orig;
19 };
20 } // namespace horizon
Definition: keep_slope_util.hpp:5
Definition: keep_slope_util.hpp:7