Просмотр исходного кода

Update Matrix4.d.ts

Fixed invert() return type
Aki Rodić 4 лет назад
Родитель
Сommit
4ec3346778
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/math/Matrix4.d.ts

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

@@ -125,7 +125,7 @@ export class Matrix4 implements Matrix {
 	/**
 	 * Inverts this matrix.
 	 */
-	invert(): Matrix;
+	invert(): Matrix4;
 
 	/**
 	 * Multiplies the columns of this matrix by vector v.