Skip to content
Snippets Groups Projects
Commit a5cd7416 authored by Lucile Remigy's avatar Lucile Remigy
Browse files

optimisation, fonction collisionRecurse boite/BVH

parent 7c60ab49
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ void collisionRecurse(CollisionTraversalNodeBase* node, int b1, int b2,
{
updateFrontList(front_list, b1, b2);
if(node->BVDisjoints(b1, b2, sqrDistLowerBound)) return;
// if(node->BVDisjoints(b1, b2, sqrDistLowerBound)) return;
node->leafCollides(b1, b2, sqrDistLowerBound);
return;
}
......
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