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 | code |
morton code for current BV More... | |
NodeBase< BV > * | parent |
pointer to parent node More... | |
dynamic AABB tree node
Definition at line 51 of file node_base.h.
fcl::detail::NodeBase< BV >::NodeBase |
Definition at line 71 of file node_base-inl.h.
bool fcl::detail::NodeBase< BV >::isInternal |
whether is internal node
Definition at line 64 of file node_base-inl.h.
bool fcl::detail::NodeBase< BV >::isLeaf |
whether is a leaf
Definition at line 57 of file node_base-inl.h.
union { ... } |
BV fcl::detail::NodeBase< BV >::bv |
the bounding volume for the node
Definition at line 54 of file node_base.h.
NodeBase<BV>* fcl::detail::NodeBase< BV >::children[2] |
for leaf node, children nodes
Definition at line 68 of file node_base.h.
uint32 fcl::detail::NodeBase< BV >::code |
morton code for current BV
Definition at line 73 of file node_base.h.
void* fcl::detail::NodeBase< BV >::data |
Definition at line 69 of file node_base.h.
NodeBase<BV>* fcl::detail::NodeBase< BV >::parent |
pointer to parent node
Definition at line 57 of file node_base.h.