fixed matrix naming

This commit is contained in:
2024-08-18 08:55:28 +03:00
parent 67e28a5a2e
commit 62f471e04a
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;