diff options
author | wout <wout@impinc.co.uk> | 2014-07-12 14:06:49 +0200 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-07-12 14:06:49 +0200 |
commit | 501cb5387007a89af382717376c773a1ec6b68ae (patch) | |
tree | 8edcd6d28407c02430a3ace7245384bc894eb867 /src/helpers.js | |
parent | 462d2cd3738c904db0be7086878d1fcc17b79553 (diff) | |
download | svg.js-501cb5387007a89af382717376c773a1ec6b68ae.tar.gz svg.js-501cb5387007a89af382717376c773a1ec6b68ae.zip |
Further debugging matrix new implementation
Diffstat (limited to 'src/helpers.js')
-rw-r--r-- | src/helpers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers.js b/src/helpers.js index 11f5017..b22a559 100644 --- a/src/helpers.js +++ b/src/helpers.js @@ -51,7 +51,7 @@ function deltaTransformPoint(matrix, point) { // Map matrix array to object function arrayToMatrix(a) { - return { a: a[0], b: a[1], c: a[2], e: a[3], f: a[4], g: a[5] } + return { a: a[0], b: a[1], c: a[2], d: a[3], e: a[4], f: a[5] } } // Calculate position according to from and to |