fixed matrix naming

This commit is contained in:
2024-08-18 08:55:28 +03:00
parent cf328eddf4
commit 9d8efa7f03
3 changed files with 78 additions and 78 deletions

View File

@@ -9,8 +9,8 @@
TEST(UnitTestMatrix, ToString)
{
omath::Matrix matrix(2, 2);
matrix.set(1.1);
const auto str = matrix.to_string();
matrix.Set(1.1);
const auto str = matrix.ToSrtring();
std::cout << str;