diff options
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 |