hpp-fcl
2.4.1
HPP fork of FCL -- The Flexible Collision Library
|
Go to the documentation of this file.
38 #ifndef HPP_FCL_BVH_FRONT_H
39 #define HPP_FCL_BVH_FRONT_H
63 : left(left_), right(right_), valid(true) {}
72 if (front_list) front_list->push_back(
BVHFrontNode(b1, b2));
#define HPP_FCL_DLLAPI
Definition: config.hh:88
std::list< BVHFrontNode > BVHFrontList
BVH front list is a list of front nodes.
Definition: BVH_front.h:67
unsigned int right
Definition: BVH_front.h:56
Main namespace.
Definition: broadphase_bruteforce.h:44
Front list acceleration for collision Front list is a set of internal and leaf nodes in the BVTT hier...
Definition: BVH_front.h:53
bool valid
The front node is not valid when collision is detected on the front node.
Definition: BVH_front.h:60
void updateFrontList(BVHFrontList *front_list, unsigned int b1, unsigned int b2)
Add new front node into the front list.
Definition: BVH_front.h:70
BVHFrontNode(unsigned int left_, unsigned int right_)
Definition: BVH_front.h:62