38 #ifndef COAL_BV_NODE_H
39 #define COAL_BV_NODE_H
70 (std::numeric_limits<unsigned int>::max)())
87 inline bool isLeaf()
const {
return first_child < 0; }
95 inline int leftChild()
const {
return first_child; }
99 inline int rightChild()
const {
return first_child + 1; }
105 template <
typename BV>
114 return Base::operator==(other) && bv == other.
bv;
124 Scalar& sqrDistLowerBound)
const {
125 return bv.overlap(other.
bv, request, sqrDistLowerBound);
131 Vec3s* P2 = NULL)
const {
132 return bv.distance(other.
bv, P1, P2);
140 static const Matrix3s id3 = Matrix3s::Identity();
145 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
#define COAL_DLLAPI
Definition: config.hh:88
bool overlap(const BVNode &other, const CollisionRequest &request, Scalar &sqrDistLowerBound) const
Check whether two BVNode collide.
Definition: BV_node.h:123
BV bv
bounding volume storing the geometry
Definition: BV_node.h:110
bool operator!=(const BVNode &other) const
Difference operator.
Definition: BV_node.h:118
Vec3s getCenter() const
Access to the center of the BV.
Definition: BV_node.h:136
bool isLeaf() const
Whether current node is a leaf node (i.e. contains a primitive index.
Definition: BV_node.h:87
BVNodeBase()
Default constructor.
Definition: BV_node.h:67
BVNodeBase Base
Definition: BV_node.h:107
Scalar distance(const BVNode &other, Vec3s *P1=NULL, Vec3s *P2=NULL) const
Compute the distance between two BVNode. P1 and P2, if not NULL and the underlying BV supports distan...
Definition: BV_node.h:130
const Matrix3s & getOrientation() const
Access to the orientation of the BV.
Definition: BV_node.h:139
int rightChild() const
Return the index of the second child. The index is referred to the bounding volume array (i....
Definition: BV_node.h:99
unsigned int first_primitive
The start id the primitive belonging to the current node. The index is referred to the primitive_indi...
Definition: BV_node.h:61
bool operator==(const BVNode &other) const
Equality operator.
Definition: BV_node.h:113
bool overlap(const BVNode &other) const
Check whether two BVNode collide.
Definition: BV_node.h:121
unsigned int num_primitives
The number of primitives belonging to the current node.
Definition: BV_node.h:64
int first_child
An index for first child node or primitive If the value is positive, it is the index of the first chi...
Definition: BV_node.h:56
int leftChild() const
Return the index of the first child. The index is referred to the bounding volume array (i....
Definition: BV_node.h:95
bool operator!=(const BVNodeBase &other) const
Difference operator.
Definition: BV_node.h:83
int primitiveId() const
Return the primitive index. The index is referred to the original data (i.e. vertices or tri_indices)...
Definition: BV_node.h:91
bool operator==(const BVNodeBase &other) const
Equality operator.
Definition: BV_node.h:76
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
Eigen::Matrix< Scalar, 3, 3 > Matrix3s
Definition: data_types.h:74
BVNodeBase encodes the tree structure for BVH.
Definition: BV_node.h:51
A class describing a bounding volume node. It includes the tree structure providing in BVNodeBase and...
Definition: BV_node.h:106
request to the collision algorithm
Definition: collision_data.h:311