Main Page
Module List
Reference documentation
Namespaces
Classes
Examples
distro
c++_api
inc
opals
MergePolygonMode.hpp
1
#ifndef OPALS_MERGE_POLYGON_MODE_HPP_INCLUDED
2
#define OPALS_MERGE_POLYGON_MODE_HPP_INCLUDED
3
4
#include <opals/config.hpp>
5
6
namespace
opals
7
{
8
/// TODO: Enumerator for what?
9
namespace
MergePolygonMode
10
{
11
enum
Type
12
{
13
safe
,
///< incremental merge of polygon parts (slow but robust)
14
fast
,
///< build polygon object at once (fast but fails in case of topological incorrect polygon parts)
15
Count
///< number of elements
16
};
17
}
18
}
19
20
#endif