mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Transform the correct amount of points in Curve.getValues() when a matrix is provided.
This commit is contained in:
parent
e5995527e8
commit
c2465b60fa
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ statics: {
|
|||
p2._x, p2._y
|
||||
];
|
||||
if (matrix)
|
||||
matrix._transformCoordinates(values, values, 6);
|
||||
matrix._transformCoordinates(values, values, 4);
|
||||
return values;
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue