removed method from Mat added method for unity

This commit is contained in:
2025-04-16 17:52:19 +03:00
parent 7873047550
commit 592a98f38c
7 changed files with 22 additions and 18 deletions

View File

@@ -16,7 +16,7 @@ TEST(UnitTestOpenGL, ForwardVector)
std::print("{}\n", angles.pitch.AsDegrees());
const auto forward2 = omath::opengl_engine::ForwardVector(angles);
std::println("{} {} {}", forward2.x, (int)forward2.y, forward2.z);
std::println("{} {} {}", forward2.x, (int)forward2.y, (int)forward2.z);
EXPECT_EQ(forward, omath::opengl_engine::kAbsForward);
}