mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Fix Matrix#toString() to print values in correct sequence.
This commit is contained in:
parent
607fe8f5d6
commit
994b9deb8f
1 changed files with 2 additions and 2 deletions
|
@ -180,8 +180,8 @@ var Matrix = this.Matrix = Base.extend({
|
|||
*/
|
||||
toString: function() {
|
||||
return '[['
|
||||
+ [this._m00, this._m10, this._m01].join(', ') + '], ['
|
||||
+ [this._m11, this._m02, this._m12].join(', ') + ']]';
|
||||
+ [this._m00, this._m01, this._m02].join(', ') + '], ['
|
||||
+ [this._m10, this._m11, this._m12].join(', ') + ']]';
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue