BoundaryOption.hpp
1 #ifndef DM_BOUNDARY_OPTION_HPP_INCLUDED
2 #define DM_BOUNDARY_OPTION_HPP_INCLUDED
3 
4 #ifdef _MSC_VER
5  #pragma once
6 #endif
7 
8 #include "DM/config.hpp"
9 #include "DM/AutoLink.hpp" //enable autolink
10 
11 DM_NAMESPACE_BEGIN
12 
13 namespace BoundaryOption {
14 
15  enum Type { OriRectangle = 0, ///< minimum enclosing (oriented) rectangle
16  ConvexHull = 1, ///< convex hull
17  AlphaShape = 2 ///< alpha shape
18  };
19 
20 }
21 
22 DM_NAMESPACE_END
23 
24 #endif //DM_BOUNDARY_OPTION_HPP_INCLUDED