Clean up code.

This commit is contained in:
Jürg Lehni 2013-02-08 18:17:51 -08:00
parent bd62b4b819
commit d793d8a43d

View file

@ -393,8 +393,8 @@ var Matrix = this.Matrix = Base.extend(/** @lends Matrix# */{
var i = srcOff, j = dstOff,
srcEnd = srcOff + 2 * numPts;
while (i < srcEnd) {
var x = src[i++];
var y = src[i++];
var x = src[i++],
y = src[i++];
dst[j++] = x * this._a + y * this._b + this._tx;
dst[j++] = x * this._c + y * this._d + this._ty;
}