mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -05:00
SVG: Fix faulty parsing of matrix values.
This commit is contained in:
parent
f63cb40723
commit
01a0920c92
1 changed files with 1 additions and 1 deletions
|
@ -304,7 +304,7 @@ new function() {
|
|||
switch (command) {
|
||||
case 'matrix':
|
||||
matrix.concatenate(
|
||||
new Matrix(v[0], v[2], v[1], v[3], v[4], v[5]));
|
||||
new Matrix(v[0], v[1], v[2], v[3], v[4], v[5]));
|
||||
break;
|
||||
case 'rotate':
|
||||
matrix.rotate(v[0], v[1], v[2]);
|
||||
|
|
Loading…
Reference in a new issue