Skip to content

Commit

Permalink
updated edge build
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Dec 23, 2015
1 parent 3f9364c commit 37a86cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/matter.js
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ var Axes = require('../geometry/Axes');
body.force.x += force.x;
body.force.y += force.y;
var offset = { x: position.x - body.position.x, y: position.y - body.position.y };
body.torque += (offset.x * force.y - offset.y * force.x) * body.inverseInertia;
body.torque += offset.x * force.y - offset.y * force.x;
};

/**
Expand Down
4 changes: 2 additions & 2 deletions build/matter.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 37a86cd

Please sign in to comment.