diff --git a/include/hpp/fcl/narrowphase/narrowphase.h b/include/hpp/fcl/narrowphase/narrowphase.h index a92d30116a41e69836f1dfb0de73d009c63cef29..a3b6bbf8a8aed0ed7bcb5779a778ca165e8b6f37 100644 --- a/include/hpp/fcl/narrowphase/narrowphase.h +++ b/include/hpp/fcl/narrowphase/narrowphase.h @@ -142,6 +142,7 @@ namespace fcl break; } case details::GJK::Valid: + case details::GJK::Failed: { col = false; Vec3f w0 (Vec3f::Zero()), w1 (Vec3f::Zero()); @@ -152,8 +153,8 @@ namespace fcl w1 += shape.support(-gjk.getSimplex()->vertex[i]->d, 1) * p; } distance = (w0 - w1).norm(); - p1 = w0; - p2 = shape.toshape0.transform(w1); + p1 = tf1.transform (w0); + p2 = tf1.transform (w1); assert (distance > 0); } break;