BVNodeBase encodes the tree structure for BVH. More...
#include <hpp/fcl/BV/BV_node.h>
Public Member Functions | |
bool | isLeaf () const |
Whether current node is a leaf node (i.e. contains a primitive index. More... | |
int | primitiveId () const |
Return the primitive index. The index is referred to the original data (i.e. vertices or tri_indices) in BVHModel. More... | |
int | leftChild () const |
Return the index of the first child. The index is referred to the bounding volume array (i.e. bvs) in BVHModel. More... | |
int | rightChild () const |
Return the index of the second child. The index is referred to the bounding volume array (i.e. bvs) in BVHModel. More... | |
Public Attributes | |
int | first_child |
An index for first child node or primitive If the value is positive, it is the index of the first child bv node If the value is negative, it is -(primitive index + 1) Zero is not used. More... | |
int | first_primitive |
The start id the primitive belonging to the current node. More... | |
int | num_primitives |
The number of primitives belonging to the current node. More... | |
BVNodeBase encodes the tree structure for BVH.
|
inline |
Whether current node is a leaf node (i.e. contains a primitive index.
|
inline |
Return the index of the first child. The index is referred to the bounding volume array (i.e. bvs) in BVHModel.
References first_child.
|
inline |
Return the primitive index. The index is referred to the original data (i.e. vertices or tri_indices) in BVHModel.
Referenced by hpp::fcl::MeshShapeCollisionTraversalNode< kIOS, S, NarrowPhaseSolver, 0 >::leafTesting(), hpp::fcl::MeshCollisionTraversalNode< BV, _Options >::leafTesting(), hpp::fcl::ShapeMeshCollisionTraversalNode< S, OBB, NarrowPhaseSolver, 0 >::leafTesting(), hpp::fcl::MeshDistanceTraversalNode< OBBRSS >::leafTesting(), hpp::fcl::MeshShapeDistanceTraversalNode< OBBRSS, S, NarrowPhaseSolver >::leafTesting(), and hpp::fcl::ShapeMeshDistanceTraversalNode< S, kIOS, NarrowPhaseSolver >::leafTesting().
|
inline |
Return the index of the second child. The index is referred to the bounding volume array (i.e. bvs) in BVHModel.
int hpp::fcl::BVNodeBase::first_child |
An index for first child node or primitive If the value is positive, it is the index of the first child bv node If the value is negative, it is -(primitive index + 1) Zero is not used.
Referenced by leftChild().
int hpp::fcl::BVNodeBase::first_primitive |
The start id the primitive belonging to the current node.
The index is referred to the primitive_indices in BVHModel and from that we can obtain the primitive's index in original data indirectly.
Referenced by hpp::fcl::BVHExpand().
int hpp::fcl::BVNodeBase::num_primitives |
The number of primitives belonging to the current node.
Referenced by hpp::fcl::BVHExpand().