From 04f2f19a43676534ac137e99e4426bb770f3c0ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Thu, 9 May 2013 02:31:26 -0700 Subject: [PATCH] Minor fix in Matrix#shear() --- src/basic/Matrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/Matrix.js b/src/basic/Matrix.js index 0a0a57b0..f472927f 100644 --- a/src/basic/Matrix.js +++ b/src/basic/Matrix.js @@ -265,7 +265,7 @@ var Matrix = this.Matrix = Base.extend(/** @lends Matrix# */{ // Do not modify point, center, since that would arguments of which // we're reading from! var _point = Point.read(arguments), - _center = Point.read(arguments); + _center = Point.read(arguments, 0, 0, false, true); // readNull if (_center) this.translate(_center); var a = this._a,