add mat4.determinant(...)

This commit is contained in:
MihailRis
2024-06-19 14:38:50 +03:00
parent 2395e05a01
commit bcbec562ac
3 changed files with 23 additions and 0 deletions
+7
View File
@@ -25,6 +25,13 @@ mat4.idt()
mat4.idt(dst: matrix)
```
## Matrix determinant - *mat4.determinant(...)*
```lua
-- calculates the determinant of the matrix
mat4.determinant(m: matrix)
```
## Matrix multiplication - *mat4.mul(...)*
```lua
+7
View File
@@ -25,6 +25,13 @@ mat4.idt()
mat4.idt(dst: matrix)
```
## Определитель матрицы - *mat4.determinant(...)*
```lua
-- вычисляет определитель матрицы
mat4.determinant(m: matrix)
```
## Умножение матриц - *mat4.mul(...)*
```lua