]> source.dussan.org Git - svg.js.git/commitdiff
Cant see the forest with all these trees...
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Mon, 8 Oct 2018 13:35:33 +0000 (15:35 +0200)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Mon, 8 Oct 2018 13:35:33 +0000 (15:35 +0200)
src/matrix.js

index 986b3fe4d3a4b1faa2db1dfb4621dd298fe7c501..49015a36edeb255b4463b8659439c391003e3c11 100644 (file)
@@ -255,8 +255,7 @@ SVG.Matrix = SVG.invent({
 
     // Scale matrix
     scale: function (x, y, cx, cy) {
-      return this.scaleO.call(this.clone(), ...arguments)
-      //return this.clone().scaleO(x, y, cx, cy)
+      return this.clone().scaleO(...arguments)
     },
 
     scaleO: function (x, y = x, cx = 0, cy = 0) {
@@ -331,8 +330,7 @@ SVG.Matrix = SVG.invent({
 
     // Skew Matrix
     skew: function (x, y, cx, cy) {
-      return this.skewO.call(this.clone(), ...arguments)
-      //return this.clone().skew(x, y, cx, cy)
+      return this.clone().skewO(...arguments)
     },
 
     skewO: function (x, y = x, cx = 0, cy = 0) {