supereight
|
Manages memory for se::Octree nodes and blocks in an efficient manner. More...
#include <memory_pool.hpp>
Public Member Functions | |
NodeT * | allocateRoot (const Eigen::Vector3i &coord, const int size) |
Allocate the root node with coordinates in voxels coord and edge length in voxels size . | |
NodeT * | allocateNode (NodeT *const parent_ptr, const int child_idx, const typename NodeT::DataType &init_data) |
Return a pointer to a newly allocated node that is the child with index child_idx of parent_ptr and initialize it with init_data . | |
BlockT * | allocateBlock (NodeT *const parent_ptr, const int child_idx, const typename BlockT::DataType &init_data) |
Return a pointer to a newly allocated block that is the child with index child_idx of parent_ptr and initialise it with init_data . | |
void | deleteNode (NodeT *const node_ptr) |
Destruct and deallocate the node pointed to by node_ptr . | |
void | deleteBlock (BlockT *const block_ptr) |
Destruct and deallocate the block pointed to by block_ptr . | |
Manages memory for se::Octree nodes and blocks in an efficient manner.
The destructors of all still allocated nodes and blocks are called on destruction of the se::MemoryPool object. User code shouldn't use se::MemoryPool directly as all usage is internal in se::Octree.
delete
.
|
inline |
Allocate the root node with coordinates in voxels coord
and edge length in voxels size
.
|
inline |
Return a pointer to a newly allocated node that is the child with index child_idx
of parent_ptr
and initialize it with init_data
.
|
inline |
Return a pointer to a newly allocated block that is the child with index child_idx
of parent_ptr
and initialise it with init_data
.
Destruct and deallocate the node pointed to by node_ptr
.
Destruct and deallocate the block pointed to by block_ptr
.