Skip to content

Commit

Permalink
add parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
flyover committed Jan 26, 2016
1 parent 9c09520 commit 16d3b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spine.js
Original file line number Diff line number Diff line change
Expand Up @@ -908,8 +908,8 @@ spine.Space.extract = function(ab, a, out) {
var s = Math.sin(rad);
var tx = c * x - s * y;
var ty = s * x + c * y;
out.position.x = tx / a.scale.x * a.flip.x;
out.position.y = ty / a.scale.y * a.flip.y;
out.position.x = tx / (a.scale.x * a.flip.x);
out.position.y = ty / (a.scale.y * a.flip.y);
return out;
}

Expand Down

0 comments on commit 16d3b00

Please sign in to comment.