File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ Phaser.Matrix.prototype = {
199199 */
200200 toArray : function ( transpose , array ) {
201201
202- if ( typeof array === 'undefined' ) { array = new PIXI . Float32Array ( 9 ) } ;
202+ if ( typeof array === 'undefined' ) { array = new PIXI . Float32Array ( 9 ) ; }
203203
204204 if ( transpose )
205205 {
@@ -242,7 +242,7 @@ Phaser.Matrix.prototype = {
242242 */
243243 apply : function ( pos , newPos ) {
244244
245- if ( typeof newPos === 'undefined' ) { newPos = new Phaser . Point ( ) } ;
245+ if ( typeof newPos === 'undefined' ) { newPos = new Phaser . Point ( ) ; }
246246
247247 newPos . x = this . a * pos . x + this . c * pos . y + this . tx ;
248248 newPos . y = this . b * pos . x + this . d * pos . y + this . ty ;
@@ -263,7 +263,7 @@ Phaser.Matrix.prototype = {
263263 */
264264 applyInverse : function ( pos , newPos ) {
265265
266- if ( typeof newPos === 'undefined' ) { newPos = new Phaser . Point ( ) } ;
266+ if ( typeof newPos === 'undefined' ) { newPos = new Phaser . Point ( ) ; }
267267
268268 var id = 1 / ( this . a * this . d + this . c * - this . b ) ;
269269 var x = pos . x ;
You can’t perform that action at this time.
0 commit comments