Voxomap
A C++11 voxel container.
|
#include <cstdint>
#include <utility>
#include <type_traits>
#include "../VoxelNode.hpp"
#include "../iterator.hpp"
#include "SidedContainer.ipp"
Go to the source code of this file.
Classes | |
struct | voxomap::SidedVoxel< T_Voxel > |
Voxel with side informations Side is present if the corresponding neighbor voxel exist. For example: More... | |
struct | voxomap::SidedContainer< T_Container, T_Voxel > |
Wrap a voxel container to add side features. More... | |
Namespaces | |
voxomap | |
Enumerations | |
enum | voxomap::SideEnum : uint8_t { voxomap::XPOS = 1, voxomap::XNEG = 2, voxomap::YPOS = 4, voxomap::YNEG = 8, voxomap::ZPOS = 16, voxomap::ZNEG = 32, voxomap::ALL = XPOS | XNEG | YPOS | YNEG | ZPOS | ZNEG } |
List of the voxel sides. More... | |