38 #ifndef FCL_HIERARCHY_TREE_H 39 #define FCL_HIERARCHY_TREE_H 62 using S =
typename BV::S;
70 HierarchyTree(
int bu_threshold_ = 16,
int topdown_level_ = 0);
75 void init(std::vector<NodeType*>& leaves,
int level = 0);
78 NodeType* insert(
const BV& bv,
void* data);
81 void remove(NodeType* leaf);
100 void update(NodeType* leaf,
int lookahead_level = -1);
103 bool update(NodeType* leaf,
const BV& bv);
106 bool update(NodeType* leaf,
const BV& bv,
const Vector3<S>& vel,
S margin);
109 bool update(NodeType* leaf,
const BV& bv,
const Vector3<S>& vel);
112 size_t getMaxHeight()
const;
115 size_t getMaxDepth()
const;
118 void balanceBottomup();
121 void balanceTopdown();
124 void balanceIncremental(
int iterations);
130 void extractLeaves(
const NodeType* root, std::vector<NodeType*>& leaves)
const;
136 NodeType* getRoot()
const;
138 NodeType*& getRoot();
141 void print(NodeType* root,
int depth);
150 bool operator() (
const NodeType* a,
const NodeType* b)
const 157 void bottomup(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
160 NodeType* topdown(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
163 size_t getMaxHeight(NodeType* node)
const;
166 void getMaxDepth(NodeType* node,
size_t depth,
size_t& max_depth)
const;
171 NodeType* topdown_0(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
177 NodeType* topdown_1(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
180 void init_0(std::vector<NodeType*>& leaves);
184 void init_1(std::vector<NodeType*>& leaves);
188 void init_2(std::vector<NodeType*>& leaves);
191 void init_3(std::vector<NodeType*>& leaves);
193 NodeType* mortonRecurse_0(
const NodeVecIterator lbeg,
const NodeVecIterator lend,
const uint32& split,
int bits);
195 NodeType* mortonRecurse_1(
const NodeVecIterator lbeg,
const NodeVecIterator lend,
const uint32& split,
int bits);
197 NodeType* mortonRecurse_2(
const NodeVecIterator lbeg,
const NodeVecIterator lend);
200 void update_(NodeType* leaf,
const BV& bv);
203 NodeType* sort(NodeType* n, NodeType*&
r);
211 void insertLeaf(NodeType*
const sub_root, NodeType*
const leaf);
220 NodeType* removeLeaf(NodeType*
const leaf);
223 void fetchLeaves(NodeType* root, std::vector<NodeType*>& leaves,
int depth = -1);
225 static size_t indexOf(NodeType* node);
228 NodeType* createNode(NodeType* parent,
232 NodeType* createNode(NodeType* parent,
237 NodeType* createNode(NodeType* parent,
240 void deleteNode(NodeType* node);
242 void recurseDeleteNode(NodeType* node);
244 void recurseRefit(NodeType* node);
267 template<
typename BV>
272 template<
typename BV>
280 template<
typename BV>
dynamic AABB<S> tree node
std::vector< NodeBase< BV > *>::const_iterator NodeVecConstIterator
Eigen::Matrix< S, 3, 1 > Vector3
uint32 code
morton code for current BV
size_t select(const NodeBase< BV > &query, const NodeBase< BV > &node1, const NodeBase< BV > &node2)
select from node1 and node2 which is close to a given query. 0 for node1 and 1 for node2 ...
Class for hierarchy tree structure.
bool nodeBaseLess(NodeBase< BV > *a, NodeBase< BV > *b, int d)
Compare two nodes accoording to the d-th dimension of node center.
typename fcl::AABB< S > ::S S
int bu_threshold
decide the depth to use expensive bottom-up algorithm
NodeType * free_node
This is a one NodeType cache, the reason is that we need to remove a node and then add it again frequ...
std::vector< NodeBase< BV > *>::iterator NodeVecIterator
int topdown_level
decide which topdown algorithm to use