| 10 | #include <ThirdParty/catch2/catch.hpp> |
| 11 | |
| 12 | static Quaternion RotationX(float angle) |
| 13 | { |
| 14 | const float halfAngle = angle * 0.5f; |
| 15 | return Quaternion(Math::Sin(halfAngle), 0.0f, 0.0f, Math::Cos(halfAngle)); |
| 16 | } |
| 17 | |
| 18 | TEST_CASE("Math") |
| 19 | { |
no test coverage detected