Minor fix in Matrix#shear()

This commit is contained in:
Jürg Lehni 2013-05-09 02:31:26 -07:00
parent 9e5b47c1ac
commit 04f2f19a43

View file

@ -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,