Skip to content
Snippets Groups Projects
Verified Commit b4c01da8 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

traversal: minor fix

parent 02005d21
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,6 @@ public:
/// @brief BV culling test in one BVTT node
bool BVDisjoints(unsigned int b1, unsigned int /*b2*/) const
{
std::cout << "BVDisjoints" << std::endl;
if(this->enable_statistics) this->num_bv_tests++;
if (RTIsIdentity)
return !this->model1->getBV(b1).bv.overlap(this->model2_bv);
......@@ -262,7 +261,8 @@ public:
RTIsIdentity = _Options & RelativeTransformationIsIdentity
};
ShapeHeightFieldCollisionTraversalNode()
ShapeHeightFieldCollisionTraversalNode(const CollisionRequest& request)
: CollisionTraversalNodeBase(request)
{
model1 = NULL;
model2 = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment