Transform the correct amount of points in Curve.getValues() when a matrix is provided.

This commit is contained in:
Jürg Lehni 2014-09-20 11:06:25 +02:00
parent e5995527e8
commit c2465b60fa

View file

@ -481,7 +481,7 @@ statics: {
p2._x, p2._y
];
if (matrix)
matrix._transformCoordinates(values, values, 6);
matrix._transformCoordinates(values, values, 4);
return values;
},