#include "app.hpp" #include "compat/assert.hpp" #include #include #include #include #include namespace floormat { using Magnum::Math::Vector; namespace { template constexpr void test_float2() { const vec a{(T)1, (T)2}, b{(T)2, (T)3}; fm_assert(a[0] == (T)1 && a[1] == (T)2); fm_assert(a + b == vec{(T)3, (T)5}); fm_assert(a - b == vec{(T)-1, (T)-1}); fm_assert(a * b == vec{(T)2, (T)6}); fm_assert(b / a == vec{(T)2, (T)1.5}); fm_assert(b.product() == (T)6); fm_assert(b.sum() == (T)5); } template constexpr void test_int() { using I = typename ivec::Type; constexpr auto vec = [](auto x, auto y) { return ivec{(I)x, (I)y}; }; const auto a = vec(3, 5), b = vec(11, 7); fm_assert(a[0] == 3 && a[1] == 5); fm_assert(a + b == vec(14,12)); fm_assert(b - a == vec(8, 2)); fm_assert(b % a == vec(2, 2)); fm_assert(b / a == vec(3, 1)); fm_assert(a.product() == 15); fm_assert(a.sum() == 8); } constexpr bool compile_tests() { test_float2, float>(); test_float2, double>(); test_float2(); test_int>(); test_int>(); test_int>(); return true; } } // namespace void Test::test_magnum_math() { static_assert(compile_tests()); } } // namespace floormat