Browse Source

Fix Matrix3.transposeIntoArray d.ts signature

Ondřej Španěl 5 years ago
parent
commit
9445439493
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/math/Matrix3.d.ts

+ 1 - 1
src/math/Matrix3.d.ts

@@ -86,7 +86,7 @@ export class Matrix3 implements Matrix {
 	/**
 	/**
 	 * Transposes this matrix into the supplied array r, and returns itself.
 	 * Transposes this matrix into the supplied array r, and returns itself.
 	 */
 	 */
-	transposeIntoArray( r: number[] ): number[];
+	transposeIntoArray( r: number[] ): Matrix3;
 
 
 	setUvTransform( tx: number, ty: number, sx: number, sy: number, rotation: number, cx: number, cy: number ): Matrix3;
 	setUvTransform( tx: number, ty: number, sx: number, sy: number, rotation: number, cx: number, cy: number ): Matrix3;