Skip to content

Commit

Permalink
Swap mu and mu2 coefficients placement
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Perez <jjperez@ekumenlabs.com>
  • Loading branch information
Blast545 committed Mar 3, 2021
1 parent 363889c commit aa22784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bullet/src/SDFFeatures.cc
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Identity SDFFeatures::ConstructSdfCollision(
// shape->setMargin(btScalar(0.0001));
body->setFriction(1);
// body->setRollingFriction(0.25);
body->setAnisotropicFriction(btVector3(mu2, mu, 1),
body->setAnisotropicFriction(btVector3(mu, mu2, 1),
btCollisionObject::CF_ANISOTROPIC_FRICTION);

dynamic_cast<btCompoundShape *>(body->getCollisionShape())
Expand Down

0 comments on commit aa22784

Please sign in to comment.