supereight
Loading...
Searching...
No Matches
octant.hpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2016-2019 Emanuele Vespa
3 * SPDX-FileCopyrightText: 2019-2024 Smart Robotics Lab, Imperial College London, Technical University of Munich
4 * SPDX-FileCopyrightText: 2019-2021 Nils Funk
5 * SPDX-FileCopyrightText: 2019-2024 Sotiris Papatheodorou
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#ifndef SE_OCTANT_HPP
10#define SE_OCTANT_HPP
11
13#include <se/map/data.hpp>
15
16namespace se {
17
20 // The OctantBase data member order was selected so that sizeof(OctantBase) is minimized.
21
22 OctantBase* const parent_ptr_;
23
24 public:
26 const Eigen::Vector3i coord;
27
30
34 std::uint8_t child_mask;
35
37 const bool is_block;
38
39
40
41 protected:
47 OctantBase(const Eigen::Vector3i& coord, const bool is_block, OctantBase* const parent_ptr) :
49 {
50 }
51
52 public:
55 {
56 return parent_ptr_;
57 }
58
60 const OctantBase* parent() const
61 {
62 return parent_ptr_;
63 }
64
66 bool isLeaf() const
67 {
68 return child_mask == 0u;
69 }
70
71 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
72};
73
74} // namespace se
75
76#include "block.hpp"
77#include "node.hpp"
78
79#endif // SE_OCTANT_HPP
Definition image.hpp:19
The base class of all octants (se::Node and se::Block) in an se::Octree.
Definition octant.hpp:19
bool isLeaf() const
Return whether the octant is a leaf, that is, whether it has no children.
Definition octant.hpp:66
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 ...
Definition octant.hpp:47
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.
Definition octant.hpp:34
const OctantBase * parent() const
Const version of se::OctantBase::parent().
Definition octant.hpp:60
timestamp_t timestamp
The time the octant was last updated at.
Definition octant.hpp:29
const Eigen::Vector3i coord
The coordinates in voxels of the octant's vertex closest to the origin.
Definition octant.hpp:26
const bool is_block
Whether the octant is an se::Block.
Definition octant.hpp:37
OctantBase * parent()
Return the pointer to the octant's parent.
Definition octant.hpp:54
Helper wrapper to allocate and de-allocate octants in the octree.
Definition bounded_vector.hpp:14