diff options
author | Saivan <savian@me.com> | 2018-06-28 23:45:44 +1000 |
---|---|---|
committer | Saivan <savian@me.com> | 2018-06-28 23:45:44 +1000 |
commit | 739e2dff566204a601113d64d7e47a39a41b306b (patch) | |
tree | f7d4897d67ef00ca1e3c5e73bfcdff2017db4981 /dist | |
parent | ad2047507de85ca40b9a83b41bde5522a1aacb05 (diff) | |
download | svg.js-739e2dff566204a601113d64d7e47a39a41b306b.tar.gz svg.js-739e2dff566204a601113d64d7e47a39a41b306b.zip |
Add a few debugging statements
Diffstat (limited to 'dist')
-rw-r--r-- | dist/svg.js | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/dist/svg.js b/dist/svg.js index 7b70fc3..d387d53 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -6,7 +6,7 @@ * @copyright Wout Fierens <wout@mick-wout.com> * @license MIT * -* BUILT: Thu Jun 28 2018 22:44:34 GMT+1000 (AEST) +* BUILT: Thu Jun 28 2018 23:40:30 GMT+1000 (AEST) */; (function(root, factory) { @@ -1708,8 +1708,14 @@ SVG.Matrix = SVG.invent({ }, // Applies a matrix defined by its affine parameters - compose: function (o, ox, oy) { + compose: function (o) { + if (o.origin) { + o.originX = o.origin[0] + o.originY = o.origin[1] + } // Get the parameters + var ox = o.originX || 0 + var oy = o.originY || 0 var sx = o.scaleX || 1 var sy = o.scaleY || 1 var lam = o.shear || 0 @@ -1719,23 +1725,25 @@ SVG.Matrix = SVG.invent({ // Apply the standard matrix var result = new SVG.Matrix() + .translate(-ox, -oy) .scale(sx, sy) .shear(lam) .rotate(theta) .translate(tx, ty) .lmultiply(this) + .translate(ox, oy) return result }, // Decomposes this matrix into its affine parameters - decompose: function () { + decompose: function (ox=0, oy=0) { // Get the parameters from the matrix var a = this.a var b = this.b var c = this.c var d = this.d - var e = this.e - var f = this.f + var e = this.e - ox + var f = this.f - oy // Figure out if the winding direction is clockwise or counterclockwise var determinant = a * d - b * c @@ -1758,16 +1766,18 @@ SVG.Matrix = SVG.invent({ scaleY: sy, shear: lam, rotate: theta, - translateX: e, - translateY: f, + translateX: e + ox, + translateY: f + oy, + originX: ox, + originY: oy, // Return the matrix parameters a: this.a, b: this.b, c: this.c, d: this.d, - e: this.e, - f: this.f + e: this.e + ox, + f: this.f + oy } }, |