38 #ifndef COAL_TRAVERSAL_NODE_SHAPES_H
39 #define COAL_TRAVERSAL_NODE_SHAPES_H
55 template <
typename S1,
typename S2>
57 :
public CollisionTraversalNodeBase {
59 ShapeCollisionTraversalNode(
const CollisionRequest& request)
60 : CollisionTraversalNodeBase(request) {
68 bool BVDisjoints(
int,
int,
Scalar&)
const {
73 void leafCollides(
int,
int,
Scalar&)
const {
74 ShapeShapeCollide<S1, S2>(this->model1, this->tf1, this->model2, this->tf2,
75 this->nsolver, this->request, *(this->result));
81 const GJKSolver* nsolver;
90 template <
typename S1,
typename S2>
92 :
public DistanceTraversalNodeBase {
94 ShapeDistanceTraversalNode() : DistanceTraversalNodeBase() {
102 Scalar BVDistanceLowerBound(
unsigned int,
unsigned int)
const {
107 void leafComputeDistance(
unsigned int,
unsigned int)
const {
108 ShapeShapeDistance<S1, S2>(this->model1, this->tf1, this->model2, this->tf2,
109 this->nsolver, this->request, *(this->result));
115 const GJKSolver* nsolver;
#define COAL_DLLAPI
Definition: config.hh:88
#define COAL_THROW_PRETTY(message, exception)
Definition: fwd.hh:64
Main namespace.
Definition: broadphase_bruteforce.h:44
double Scalar
Definition: data_types.h:68