Improved on old unit tests
Some checks failed
Merge-Checker / build_and_test (pull_request) Failing after 22s

This commit is contained in:
2025-06-05 15:02:42 -04:00
parent 1091bbda32
commit d84664b567
4 changed files with 195 additions and 148 deletions

View File

@@ -18,11 +18,6 @@ public:
*/
Matrix() = default;
/**
* @brief Create a matrix but fill all of its entries with one value
*/
Matrix(float value);
/**
* @brief Initialize a matrix with an array
*/
@@ -39,9 +34,9 @@ public:
template <typename... Args> Matrix(Args... args);
/**
* @brief set the matrix diagonals to 1 and all other values to 0
* @brief Create an identity matrix
*/
void Identity();
static Matrix<rows, columns> Identity();
/**
* @brief Set all elements in this to value