Improved on old unit tests
Some checks failed
Merge-Checker / build_and_test (pull_request) Failing after 22s
Some checks failed
Merge-Checker / build_and_test (pull_request) Failing after 22s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user