supereight
|
A leaf node of an se::Octree. More...
#include <block.hpp>
Public Types | |
typedef DataT | DataType |
Public Member Functions | |
Block (Node< DataT, ResT > *parent_ptr, const int child_idx, const DataT init_data) | |
Construct the child block of parent_ptr with index child_idx and initialize its data at the coarsest scale with init_data . | |
![]() | |
OctantBase * | parent () |
Return the pointer to the octant's parent. | |
const OctantBase * | parent () const |
Const version of se::OctantBase::parent(). | |
bool | isLeaf () const |
Return whether the octant is a leaf, that is, whether it has no children. | |
Public Attributes | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW | |
![]() | |
const Eigen::Vector3i | coord |
The coordinates in voxels of the octant's vertex closest to the origin. | |
timestamp_t | timestamp |
The time the octant was last updated at. | |
std::uint8_t | child_mask |
The i-th least significant bit of the mask must be set if the i-th child of the octant is allocated. | |
const bool | is_block |
Whether the octant is an se::Block. | |
Static Public Attributes | |
static constexpr int | size = BlockSize |
The edge length of the block in voxels. | |
static constexpr int | size_sq = math::sq(BlockSize) |
The face area of the block in voxels. | |
static constexpr int | size_cu = math::cu(BlockSize) |
The volume of the block in voxels. | |
Additional Inherited Members | |
![]() | |
OctantBase (const Eigen::Vector3i &coord, const bool is_block, OctantBase *const parent_ptr) | |
Construct an octant given the non-negative coordinates in voxels of its vertex closest to the origin (coord ), whether it's an se::Block (is_block ) and the pointer to its parent octant (parent_ptr ). | |
A leaf node of an se::Octree.
se::Block< DataT, ResT, BlockSize >::Block | ( | Node< DataT, ResT > * | parent_ptr, |
const int | child_idx, | ||
const DataT | init_data | ||
) |
Construct the child block of parent_ptr
with index child_idx
and initialize its data at the coarsest scale with init_data
.
The value of child_idx
must be in the interval [0, 7] inclusive.
The edge length of the block in voxels.
The face area of the block in voxels.
The volume of the block in voxels.