Adding a merge checker script

This commit is contained in:
2025-05-21 17:46:49 -04:00
parent dee19b54ad
commit 8a15459fc8
5 changed files with 46 additions and 18 deletions

View File

@@ -212,8 +212,8 @@ Matrix<rows, columns>::Transpose() const
// explicitly define the determinant for a 2x2 matrix because it is definitely
// the fastest way to calculate a 2x2 matrix determinant
template <>
inline float Matrix<0, 0>::Det() const { return 1e+6; }
// template <>
// inline float Matrix<0, 0>::Det() const { return 1e+6; }
template <>
inline float Matrix<1, 1>::Det() const { return this->matrix[0]; }
template <>