diff options
author | Erik Demaine <edemaine@mit.edu> | 2018-12-14 08:42:56 -0500 |
---|---|---|
committer | Erik Demaine <edemaine@mit.edu> | 2018-12-14 08:42:56 -0500 |
commit | 78e40cb0aa4a0e3a8ee024651fba0cbfc2494bee (patch) | |
tree | e4ab1bab62ec33d466a72a2a51c79c8b6ed3576f /src | |
parent | 62a248f7add66c3dc4e70d26b3f05e4e58455c12 (diff) | |
download | svg.js-78e40cb0aa4a0e3a8ee024651fba0cbfc2494bee.tar.gz svg.js-78e40cb0aa4a0e3a8ee024651fba0cbfc2494bee.zip |
Fix missing comma, lint
Diffstat (limited to 'src')
-rw-r--r-- | src/types/PointArray.js | 4 |
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) { |