feat: Changes to Matrix2 FunctionTests

This commit is contained in:
Thorben Höhne 2025-05-04 21:30:14 +02:00
parent e6d0cd2235
commit b881bde64b
Signed by: thoehne
GPG Key ID: 60D202D915B81DEC
2 changed files with 1302 additions and 975 deletions

View File

@ -1,21 +0,0 @@
#include <iostream>
#include "Core/Math/Include.h"
namespace PMath = Phanes::Core::Math;
int main()
{
PMath::Matrix4 m0 = PMath::Matrix4(1.0f, 5.0f, 3.0f, 4.0f,
2.0f, 6.0f, 4.0f, 1.0f,
2.0f, -3.0f, 5.0f, 3.0f,
8.0f, -4.0f, 6.0f, -2.0f);
PMath::Matrix4 m2;
std::cout << std::to_string(PMath::InverseV<float, false>(m0)) << std::endl;
std::cout << PMath::ToString(m0) << std::endl;
return 0;
}

File diff suppressed because it is too large Load Diff