/* * types.hpp * * Created on: Jun 15, 2015 * Author: heber */ #ifndef TRIANGLEMATCHER_TYPES_HPP_ #define TRIANGLEMATCHER_TYPES_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Triangle.hpp" //!> constant for number of indices in triangle #define NUMBERINDICESTRIANGLE 3 namespace detail { //!> typedef for a vector of triangles, i.e. contents of a a tesselation file typedef std::set tesselation_t; }; /* namespace detail */ #endif /* TRIANGLEMATCHER_TYPES_HPP_ */