added tests for color fixed matrix move operator

This commit is contained in:
2024-09-02 13:57:30 +03:00
parent 9a3a4214b8
commit b78a2e2747
7 changed files with 138 additions and 5 deletions

View File

@@ -131,4 +131,11 @@ namespace omath
{
return x + y + z + w;
}
Vector4::Vector4()
{
x = 0.f;
y = 0.f;
z = 0.f;
}
}