mirror of
https://github.com/liabru/matter-js.git
synced 2024-12-27 13:59:01 -05:00
Fixed missed variable declaration.
This commit is contained in:
parent
61855ab875
commit
a940d96886
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ var Resolver = {};
|
||||||
vertex,
|
vertex,
|
||||||
vertexCorrected,
|
vertexCorrected,
|
||||||
normal,
|
normal,
|
||||||
bodyBtoA;
|
bodyBtoA,
|
||||||
|
positionImpulse;
|
||||||
|
|
||||||
// find impulses required to resolve penetration
|
// find impulses required to resolve penetration
|
||||||
for (i = 0; i < pairs.length; i++) {
|
for (i = 0; i < pairs.length; i++) {
|
||||||
|
|
Loading…
Reference in a new issue