From be8028b835ff6ec566adc0fc2e8d0cce5ba31131 Mon Sep 17 00:00:00 2001 From: "chappuis.daniel" Date: Mon, 19 Jul 2010 19:23:31 +0000 Subject: [PATCH] Correct some bugs with the contact generation git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@355 92aac97c-a6ce-11dd-a772-7fcde58d38e6 --- .../collision/CollisionDetection.cpp | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/sources/reactphysics3d/collision/CollisionDetection.cpp b/sources/reactphysics3d/collision/CollisionDetection.cpp index 4a50544c..79893f1f 100644 --- a/sources/reactphysics3d/collision/CollisionDetection.cpp +++ b/sources/reactphysics3d/collision/CollisionDetection.cpp @@ -122,7 +122,7 @@ void CollisionDetection::computeAllContacts() { // Compute a contact (and add it to the physics world) for two colliding bodies void CollisionDetection::computeContact(const ContactInfo* const contactInfo) { - + // Extract informations from the contact info structure const OBB* const obb1 = contactInfo->obb1; const OBB* const obb2 = contactInfo->obb2; @@ -193,8 +193,19 @@ void CollisionDetection::computeContact(const ContactInfo* const contactInfo) { // Clip the edge of OBB1 using the face of OBB2 std::vector clippedEdge = clipSegmentWithRectangleInPlane(edge, obb2ExtremePoints); + // TODO : Correct this bug + // The following code is to correct a bug when the projected "edge" is not inside the clip rectangle + // of obb1ExtremePoints. Therefore, we compute the nearest two points that are on the rectangle. + if (clippedEdge.size() != 2) { + edge.clear(); + edge.push_back(computeNearestPointOnRectangle(edge[0], obb2ExtremePoints)); + edge.push_back(computeNearestPointOnRectangle(edge[1], obb2ExtremePoints)); + clippedEdge = clipSegmentWithRectangleInPlane(edge, obb2ExtremePoints); + } + // Move the clipped edge halway between the edge of OBB1 and the face of OBB2 clippedEdge = movePoints(clippedEdge, penetrationDepth/2.0 * normal.getOpposite()); + assert(clippedEdge.size() == 2); // For each point of the contact set @@ -206,12 +217,23 @@ void CollisionDetection::computeContact(const ContactInfo* const contactInfo) { else if(nbVerticesExtremeOBB1 == 4 && nbVerticesExtremeOBB2 == 2) { // If it's an edge-face contact // Compute the projection of the edge of OBB2 onto the same plane of the face of OBB1 std::vector edge = projectPointsOntoPlane(obb2ExtremePoints, obb1ExtremePoints[0], normal); - + // Clip the edge of OBB2 using the face of OBB1 std::vector clippedEdge = clipSegmentWithRectangleInPlane(edge, obb1ExtremePoints); + // TODO : Correct this bug + // The following code is to correct a bug when the projected "edge" is not inside the clip rectangle + // of obb1ExtremePoints. Therefore, we compute the nearest two points that are on the rectangle. + if (clippedEdge.size() != 2) { + edge.clear(); + edge.push_back(computeNearestPointOnRectangle(edge[0], obb1ExtremePoints)); + edge.push_back(computeNearestPointOnRectangle(edge[1], obb1ExtremePoints)); + clippedEdge = clipSegmentWithRectangleInPlane(edge, obb1ExtremePoints); + } + // Move the clipped edge halfway between the face of OBB1 and the edge of OBB2 clippedEdge = movePoints(clippedEdge, penetrationDepth/2.0 * normal); + assert(clippedEdge.size() == 2); // For each point of the contact set