fixed naming

This commit is contained in:
2024-09-02 14:13:02 +03:00
parent b78a2e2747
commit 48981fefbe
2 changed files with 9 additions and 11 deletions

View File

@@ -12,7 +12,5 @@ TEST(UnitTestProjection, IsPointOnScreen)
const omath::projection::Camera camera({0.f, 0.f, 0.f}, {0, 0.f, 0.f} , {1920.f, 1080.f}, 110.f, 0.1f, 500.f);
const auto proj = camera.WorldToScreen({100, 0, 15});
if (proj)
std::print("{} {}", proj->x, proj->y);
EXPECT_TRUE(proj.has_value());
}