| Index: lib/src/dynamics/contacts/contact.dart
|
| diff --git a/lib/src/dynamics/contacts/contact.dart b/lib/src/dynamics/contacts/contact.dart
|
| index 5c1bebfec6050711de6a2f647969d3b0d3edbac6..1585268e86bdfe51842d7fbaf16b872d2366519f 100644
|
| --- a/lib/src/dynamics/contacts/contact.dart
|
| +++ b/lib/src/dynamics/contacts/contact.dart
|
| @@ -184,13 +184,12 @@ abstract class Contact {
|
| }
|
|
|
| void resetFriction() {
|
| - _friction =
|
| - Contact.mixFriction(_fixtureA._friction, _fixtureB._friction);
|
| + _friction = Contact.mixFriction(_fixtureA._friction, _fixtureB._friction);
|
| }
|
|
|
| void resetRestitution() {
|
| - _restitution = Contact.mixRestitution(
|
| - _fixtureA._restitution, _fixtureB._restitution);
|
| + _restitution =
|
| + Contact.mixRestitution(_fixtureA._restitution, _fixtureB._restitution);
|
| }
|
|
|
| void evaluate(Manifold manifold, Transform xfA, Transform xfB);
|
|
|