Merge pull request #367 from boygirl/patch-1

Correct matrix typo
This commit is contained in:
Horcrux
2017-08-10 10:16:14 +08:00
committed by GitHub
+1 -1
View File
@@ -83,7 +83,7 @@ export default class Matrix2D {
this.a = a == null ? 1 : a;
this.b = b || 0;
this.c = c || 0;
this.d = b == null ? 1 : d;
this.d = d == null ? 1 : d;
this.tx = tx || 0;
this.ty = ty || 0;
return this;