Rename declaration typo (mat3_det2 -> mat3_det)

This commit is contained in:
Imbus 2025-05-23 18:49:53 +02:00
parent 5a2daa18df
commit 3223f9ea24

View file

@ -140,7 +140,7 @@ float mat2_det(const Mat2 *m);
* @param m Pointer to the matrix.
* @return The determinant of the matrix.
*/
float mat3_det2(const Mat3 *m);
float mat3_det(const Mat3 *m);
/**
* @brief Multiplies two 2x2 matrices (row-major order).