TerrainFilterMethod.hpp
1 #ifndef OPALS_TERRAIN_FILTER_METHOD_HPP_INCLUDED
2 #define OPALS_TERRAIN_FILTER_METHOD_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Enumerator for terrain filtering methods
9  namespace TerrainFilterMethod
10  {
11  enum Type
12  {
13  robustInterpolation , ///< terrain points filter via (hierarchical) robust surface interpolation
14  Count ///< number of elements
15  };
16  }
17 }
18 
19 #endif