From d558a7b22236d3a287a3f63424fc34d6fa4257b1 Mon Sep 17 00:00:00 2001 From: Mat Groves Date: Tue, 11 Feb 2014 20:48:52 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98296fb..f362ec9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Pixi Renderer ============= -![pixi.js logo](http://www.goodboydigital.com/pixijs/logo_small.png) +![pixi.js logo](http://www.goodboydigital.com/pixijs/logo_small.png) [](http://www.pixijs.com/projects) #### JavaScript 2D Renderer #### @@ -15,6 +15,8 @@ If you’re interested in pixi.js then feel free to follow me on twitter of course check back on [our site]() as any breakthroughs will be posted up there too! +[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/GoodBoyDigital/pixi.js/trend.png)](https://bitdeli.com/free "Bitdeli Badge") + ### Demos ### - [WebGL Filters!]() From e8d509482d02eeba0017e972999db434794e045b Mon Sep 17 00:00:00 2001 From: Tim Robinson Date: Wed, 12 Feb 2014 18:57:04 +0000 Subject: [PATCH 2/2] Fixed updateTransform bug. --- src/pixi/display/DisplayObject.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pixi/display/DisplayObject.js b/src/pixi/display/DisplayObject.js index 96b6fce..6d8739e 100644 --- a/src/pixi/display/DisplayObject.js +++ b/src/pixi/display/DisplayObject.js @@ -406,8 +406,8 @@ PIXI.DisplayObject.prototype.updateTransform = function() a01 = -this._sr * this.scale.y, a10 = this._sr * this.scale.x, a11 = this._cr * this.scale.y, - a02 = this.position.x + a00 * px - py * a01, - a12 = this.position.y + a11 * py - px * a10, + a02 = this.position.x - a00 * px - py * a01, + a12 = this.position.y - a11 * py - px * a10, b00 = parentTransform.a, b01 = parentTransform.b, b10 = parentTransform.c, b11 = parentTransform.d;