feat(matrix3): add inv function.

This commit is contained in:
2025-03-31 15:18:41 +02:00
parent 89c619f83e
commit 28eb4cbfc3
2 changed files with 22 additions and 1 deletions

View File

@@ -15,5 +15,6 @@ Mat3 mat3Scl(Mat3 m, float scalar);
Mat3 mat3Mul(Mat3 m1, Mat3 m2);
Mat3 mat3Tpo(Mat3 m);
float mat3Det(Mat3 m);
Mat3 mat3Inv(Mat3 m);
#endif // MATRIX_H