diff --git a/src/pixi/display/Sprite.js b/src/pixi/display/Sprite.js index cef8262..cdb083f 100644 --- a/src/pixi/display/Sprite.js +++ b/src/pixi/display/Sprite.js @@ -178,7 +178,7 @@ var h0 = height * (1-this.anchor.y); var h1 = height * -this.anchor.y; - var worldTransform = matrix || this.worldTransform ; + var worldTransform = matrix || this.worldTransform; var a = worldTransform.a; var b = worldTransform.b; @@ -200,7 +200,7 @@ if(d < 0)d *= -1; // this means there is no rotation going on right? RIGHT? - // if thats the case then we can avoid checking the bound values! yay + // if thats the case then we can avoid checking the bound values! yay minX = a * w1 + tx; maxX = a * w0 + tx; minY = d * h1 + ty;