From f92434ab54960299bd4a6f3b13f6891e49f65267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 16 May 2011 11:18:53 +0100 Subject: [PATCH] Add dontNotify parameter to _transformPoint(), required sometimes for LinkedPoints. --- src/basic/Matrix.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/basic/Matrix.js b/src/basic/Matrix.js index 8e412546..0de162ff 100644 --- a/src/basic/Matrix.js +++ b/src/basic/Matrix.js @@ -301,14 +301,15 @@ var Matrix = this.Matrix = Base.extend({ * A faster version of transform that only takes one point and does not * attempt to convert it. */ - _transformPoint: function(point, dest) { + _transformPoint: function(point, dest, dontNotify) { var x = point.x, y = point.y; if (!dest) dest = new Point(Point.dont); return dest.set( x * this._m00 + y * this._m01 + this._m02, - x * this._m10 + y * this._m11 + this._m12 + x * this._m10 + y * this._m11 + this._m12, + dontNotify ); },