Small modifications

This commit is contained in:
Daniel Chappuis 2015-11-16 19:08:36 +01:00
parent 5b3509c920
commit 4eceb7e7c6
3 changed files with 0 additions and 6 deletions

View File

@ -79,8 +79,6 @@ void ConcaveVsConvexAlgorithm::testCollision(const CollisionShapeInfo& shape1Inf
// Call the convex vs triangle callback for each triangle of the concave shape
concaveShape->testAllTriangles(mConvexVsTriangleCallback, aabb);
// TODO : Handle return value here
}
// Test collision between a triangle and the convex mesh shape

View File

@ -431,6 +431,4 @@ void EPAAlgorithm::computePenetrationDepthAndContactPoints(const Simplex& simple
normal, penetrationDepth, pALocal, pBLocal);
narrowPhaseCallback->notifyContact(shape1Info.overlappingPair, contactInfo);
return;
}

View File

@ -77,6 +77,4 @@ void SphereVsSphereAlgorithm::testCollision(const CollisionShapeInfo& shape1Info
// Notify about the new contact
narrowPhaseCallback->notifyContact(shape1Info.overlappingPair, contactInfo);
}
return;
}