diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-27 23:04:21 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-27 23:04:21 +0200 |
commit | 6a85fb99391e73ee551e4913f9199d426ddf93c7 (patch) | |
tree | e40b4996ca54ecf57f913c54a60f3efb361b8623 /src/point.js | |
parent | cbf1359e0ab469e1137450192b7d612501c4bb5c (diff) | |
download | svg.js-6a85fb99391e73ee551e4913f9199d426ddf93c7.tar.gz svg.js-6a85fb99391e73ee551e4913f9199d426ddf93c7.zip |
satisfy linter
Diffstat (limited to 'src/point.js')
-rw-r--r-- | src/point.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/point.js b/src/point.js index 9fd3c5a..6c64ed6 100644 --- a/src/point.js +++ b/src/point.js @@ -55,7 +55,6 @@ SVG.Point = SVG.invent({ // transform point with matrix transform: function (m) { - // Perform the matrix multiplication var x = m.a * this.x + m.c * this.y + m.e var y = m.b * this.x + m.d * this.y + m.f |