diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-09-15 23:22:03 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-09-15 23:22:03 +0200 |
commit | 30b433264fd4ed51d7a2db56c6f291652b9ca01a (patch) | |
tree | 3e2941b476aa75f7debc52ffbc3e260fefbd3fec /src | |
parent | 4ebc6aa1b03e83d3c256399715e453f14f5b0aec (diff) | |
download | svg.js-30b433264fd4ed51d7a2db56c6f291652b9ca01a.tar.gz svg.js-30b433264fd4ed51d7a2db56c6f291652b9ca01a.zip |
added transform to pattern and gradient (fix #383)
added skewX and skewY
Diffstat (limited to 'src')
-rw-r--r-- | src/matrix.js | 8 | ||||
-rw-r--r-- | src/transform.js | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/matrix.js b/src/matrix.js index c715a8c..0773910 100644 --- a/src/matrix.js +++ b/src/matrix.js @@ -129,6 +129,14 @@ SVG.Matrix = SVG.invent({ , skew: function(x, y, cx, cy) { return this.around(cx, cy, this.native().skewX(x || 0).skewY(y || 0)) } + // SkewX + , skewX: function(x, cx, cy) { + return this.around(cx, cy, this.native().skewX(x || 0)) + } + // SkewY + , skewY: function(y, cx, cy) { + return this.around(cx, cy, this.native().skewY(y || 0)) + } // Transform around a center point , around: function(cx, cy, matrix) { return this diff --git a/src/transform.js b/src/transform.js index c1afd73..d4e450f 100644 --- a/src/transform.js +++ b/src/transform.js @@ -114,7 +114,7 @@ SVG.extend(SVG.Element, SVG.FX, { } } - return this.attr('transform', matrix) + return this.attr(this instanceof SVG.Pattern ? 'patternTransform' : this instanceof SVG.Gradient ? 'gradientTransform' : 'transform', matrix) } }) |