dynamic AABB tree node More...
#include <node_base.h>
Public Member Functions | |
bool | isInternal () const |
whether is internal node More... | |
bool | isLeaf () const |
whether is a leaf More... | |
NodeBase () | |
Public Attributes | |
union { | |
NodeBase< BV > * children [2] | |
for leaf node, children nodes More... | |
void * data | |
}; | |
BV | bv |
the bounding volume for the node More... | |
uint32_t | code |
morton code for current BV More... | |
NodeBase< BV > * | parent |
pointer to parent node More... | |
dynamic AABB tree node
Definition at line 50 of file node_base.h.
hpp::fcl::detail::NodeBase< BV >::NodeBase |
Definition at line 67 of file node_base-inl.h.
bool hpp::fcl::detail::NodeBase< BV >::isInternal |
whether is internal node
Definition at line 61 of file node_base-inl.h.
bool hpp::fcl::detail::NodeBase< BV >::isLeaf |
whether is a leaf
Definition at line 55 of file node_base-inl.h.
union { ... } |
BV hpp::fcl::detail::NodeBase< BV >::bv |
the bounding volume for the node
Definition at line 52 of file node_base.h.
NodeBase<BV>* hpp::fcl::detail::NodeBase< BV >::children[2] |
for leaf node, children nodes
Definition at line 65 of file node_base.h.
uint32_t hpp::fcl::detail::NodeBase< BV >::code |
morton code for current BV
Definition at line 70 of file node_base.h.
void* hpp::fcl::detail::NodeBase< BV >::data |
Definition at line 66 of file node_base.h.
NodeBase<BV>* hpp::fcl::detail::NodeBase< BV >::parent |
pointer to parent node
Definition at line 55 of file node_base.h.