supereight
|
An intermediate node of an se::Octree. More...
#include <node.hpp>
Public Types | |
typedef DataT | DataType |
Public Member Functions | |
Node (const Eigen::Vector3i &coord, const int size, const DataT &init_data) | |
Construct a node at coordinates coord in voxels, with an edge length size in voxels and initialize its data with init_data . | |
Node (Node *const parent_ptr, const int child_idx, const DataT &init_data) | |
Construct the child node of parent_ptr with index child_idx and initialize its data with init_data . | |
const OctantBase * | getChild (const int child_idx) const |
Return a pointer to the node child with index child_idx . | |
OctantBase * | getChild (const int child_idx) |
A non-const overload of the previous member function. | |
void | setChild (const int child_idx, OctantBase *const child_ptr) |
Set the node child with index child_idx to child_ptr . | |
Eigen::Vector3i | getChildCoord (const int child_idx) const |
Return the coordinates in voxels of the child with index child_idx . | |
int | getChildIdx (const Eigen::Vector3i &child_coord) const |
Return the index of the child of the node with coordinates child_coord . | |
![]() | |
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. | |
![]() | |
const DataT & | data () const |
Always returns the default data. | |
Public Attributes | |
const int | size |
The edge length of the node in voxels. | |
![]() | |
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. | |
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 ). | |
![]() | |
NodeData (const DataT &) | |
An intermediate node of an se::Octree.
An se::Node is never a leaf in TSDF octrees but may be a leaf in occupancy octrees.
DataT | The type of data stored in the octree. |
ResT | The value of se::Res for the octree. |
se::Node< DataT, ResT >::Node | ( | const Eigen::Vector3i & | coord, |
const int | size, | ||
const DataT & | init_data | ||
) |
Construct a node at coordinates coord
in voxels, with an edge length size
in voxels and initialize its data with init_data
.
se::Node< DataT, ResT >::Node | ( | Node< DataT, ResT > *const | parent_ptr, |
const int | child_idx, | ||
const DataT & | init_data | ||
) |
Construct the child node of parent_ptr
with index child_idx
and initialize its data with init_data
.
The value of child_idx
must be in the interval [0, 7] inclusive.
Return a pointer to the node child with index child_idx
.
The value of child_idx
must be in the interval [0, 7] inclusive. Returns nullptr if the child is not allocated.
A non-const overload of the previous member function.
Set the node child with index child_idx
to child_ptr
.
The value of child_idx
must be in the interval [0, 7] inclusive.
Return the coordinates in voxels of the child with index child_idx
.
Return the index of the child of the node with coordinates child_coord
.
The returned index is in the interval [0, 7] inclusive.
child_coord
doesn't correspond to the coordinates of a child of the node. The edge length of the node in voxels.