Skip to content
Snippets Groups Projects
Commit 92d6b299 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

Revert "[OBB] Simplify expression in obbDisjointAndLowerBoundDistance.", fix #46

This reverts commit 31e52cc9.
parent a46dff83
No related branches found
No related tags found
No related merge requests found
Pipeline #2116 passed
......@@ -314,13 +314,18 @@ bool obbDisjointAndLowerBoundDistance (const Matrix3f& B, const Vec3f& T,
// Corner of b axis aligned bounding box the closest to the origin
Vec3f AABB_corner (T.cwiseAbs () - Bf * b);
squaredLowerBoundDistance = (AABB_corner - a).cwiseMax (0).squaredNorm ();
Vec3f diff3 (AABB_corner - a);
diff3 = diff3.cwiseMax (0);
//for (Vec3f::Index i=0; i<3; ++i) diff3 [i] = std::max (0, diff3 [i]);
squaredLowerBoundDistance = diff3.squaredNorm ();
if (squaredLowerBoundDistance > breakDistance2)
return true;
AABB_corner = (B.transpose () * T).cwiseAbs () - Bf.transpose () * a;
// | B^T T| - b - Bf^T a
squaredLowerBoundDistance = (AABB_corner - b).cwiseMax (0).squaredNorm ();
// diff3 = | B^T T| - b - Bf^T a
diff3 = AABB_corner - b;
diff3 = diff3.cwiseMax (0);
squaredLowerBoundDistance = diff3.squaredNorm ();
if (squaredLowerBoundDistance > breakDistance2)
return true;
......
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