aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/types/PointArray.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types/PointArray.js b/src/types/PointArray.js
index 6488c29..4117233 100644
--- a/src/types/PointArray.js
+++ b/src/types/PointArray.js
@@ -78,12 +78,12 @@ extend(PointArray, {
for (let point of this) {
// Perform the matrix multiplication
points.push([m.a * point.x + m.c * point.y + m.e,
- m.b * point.x + m.d * point.y + m.f])
+ m.b * point.x + m.d * point.y + m.f])
}
// Return the required point
return new PointArray(points)
- }
+ },
// Move point string
move (x, y) {