Multiplication was completely broken actually

This commit is contained in:
2025-02-06 21:56:54 -05:00
parent 9726ebbca0
commit 3b023d2104
2 changed files with 8 additions and 6 deletions

View File

@@ -181,7 +181,8 @@ public:
Matrix<rows, columns> operator-(const Matrix<rows, columns> &other) const;
Matrix<rows, columns> operator*(const Matrix<rows, columns> &other) const;
template <uint8_t other_columns>
Matrix<rows, other_columns> operator*(const Matrix<columns, other_columns> &other) const;
Matrix<rows, columns> operator*(float scalar) const;