From a009debf21e2b5cb272de338754db2f1f2a9a817 Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Tue, 3 Sep 2013 19:31:50 +0200 Subject: [PATCH] Fix issue in the contact solver that reduces jittering --- src/engine/ContactSolver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/ContactSolver.cpp b/src/engine/ContactSolver.cpp index f70abbec..b40eb8f2 100644 --- a/src/engine/ContactSolver.cpp +++ b/src/engine/ContactSolver.cpp @@ -266,10 +266,10 @@ void ContactSolver::initializeContactConstraints() { // Compute the restitution velocity bias "b". We compute this here instead // of inside the solve() method because we need to use the velocity difference // at the beginning of the contact. Note that if it is a resting contact (normal - // velocity under a given threshold), we don't add a restitution velocity bias + // velocity bellow a given threshold), we do not add a restitution velocity bias contactPoint.restitutionBias = 0.0; decimal deltaVDotN = deltaV.dot(contactPoint.normal); - if (deltaVDotN < RESTITUTION_VELOCITY_THRESHOLD) { + if (deltaVDotN < -RESTITUTION_VELOCITY_THRESHOLD) { contactPoint.restitutionBias = manifold.restitutionFactor * deltaVDotN; }