#include <vector>
#include <boost/cstdint.hpp>
Go to the source code of this file.
Namespaces | |
namespace | megatree |
Typedefs | |
typedef std::vector< uint8_t > | megatree::ByteVec |
typedef uint8_t | megatree::Color |
typedef uint64_t | megatree::Count |
typedef uint16_t | megatree::Point |
typedef uint32_t | megatree::ShortId |
Variables | |
static const int | megatree::CHILDREN_SIZE = sizeof(uint8_t) |
static const int | megatree::COLOR_SIZE = 3*sizeof(Color) |
static const int | megatree::COUNT_SIZE = sizeof(Count) |
static const int | megatree::NODE_SIZE = POINT_SIZE + COLOR_SIZE + COUNT_SIZE + CHILDREN_SIZE + SHORT_ID_SIZE |
static const int | megatree::POINT_SIZE = 3*sizeof(Point) |
static const int | megatree::SHORT_ID_SIZE = sizeof(ShortId) |
static const int | megatree::X_BIT = 2 |
static const int | megatree::Y_BIT = 1 |
static const int | megatree::Z_BIT = 0 |