/* * Copyright 2010-2025 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bx/blob/master/LICENSE */ #include "test.h" #include #include #include #include // intXX_t #include // UCHAR_* TEST_CASE("isFinite, isInfinite, isNan", "[math]") { #if defined(__FAST_MATH__) && __FAST_MATH__ SKIP("This unit test fails with fast math is enabled."); #endif // !defined(__FAST_MATH__) || !__FAST_MATH__ for (uint64_t ii = 0; ii < UINT32_MAX; ii += rand()%(1<<13)+1) { union { uint32_t ui; float f; } u = { uint32_t(ii) }; BX_UNUSED(u); #if BX_PLATFORM_OSX || BX_PLATFORM_IOS REQUIRE(::__isnanf(u.f) == bx::isNan(u.f) ); REQUIRE(::__isfinitef(u.f) == bx::isFinite(u.f) ); REQUIRE(::__isinff(u.f) == bx::isInfinite(u.f) ); #elif BX_COMPILER_MSVC REQUIRE(!!::isnan(u.f) == bx::isNan(u.f) ); REQUIRE(!!::isfinite(u.f) == bx::isFinite(u.f) ); REQUIRE(!!::isinf(u.f) == bx::isInfinite(u.f) ); #elif !BX_CRT_MINGW REQUIRE(::isnanf(u.f) == bx::isNan(u.f) ); REQUIRE(::finitef(u.f) == bx::isFinite(u.f) ); REQUIRE(::isinff(u.f) == bx::isInfinite(u.f) ); #endif // BX_* } } TEST_CASE("log", "[math][libm]") { STATIC_REQUIRE(bx::isEqual( 0.0f, bx::log( 1.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual( 1.0f, bx::log(bx::kE), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(bx::kLogNat2, bx::log( 2.0f), 0.0000001f) ); } static void testLog2(float _a) { REQUIRE(bx::log2(_a) == bx::log(_a) * (1.0f / bx::log(2.0f) ) ); } TEST_CASE("log2", "[math][libm]") { testLog2(0.0f); testLog2(256.0f); STATIC_REQUIRE(bx::isEqual(0.0f, bx::log2( 1.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(1.0f, bx::log2( 2.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(2.0f, bx::log2( 4.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(3.0f, bx::log2( 8.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(4.0f, bx::log2( 16.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(5.0f, bx::log2( 32.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(6.0f, bx::log2( 64.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(7.0f, bx::log2(128.0f), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(8.0f, bx::log2(256.0f), 0.0000001f) ); } TEST_CASE("ceilLog2", "[math]") { STATIC_REQUIRE(0 == bx::ceilLog2(-1) ); STATIC_REQUIRE(0 == bx::ceilLog2(0) ); STATIC_REQUIRE(0 == bx::ceilLog2(1) ); STATIC_REQUIRE(1 == bx::ceilLog2(2) ); STATIC_REQUIRE(2 == bx::ceilLog2(4) ); STATIC_REQUIRE(3 == bx::ceilLog2(8) ); STATIC_REQUIRE(4 == bx::ceilLog2(16) ); STATIC_REQUIRE(5 == bx::ceilLog2(32) ); STATIC_REQUIRE(6 == bx::ceilLog2(64) ); STATIC_REQUIRE(7 == bx::ceilLog2(128) ); STATIC_REQUIRE(8 == bx::ceilLog2(256) ); { uint32_t ii = 0; for (; ii < 8; ++ii) { REQUIRE(ii == bx::ceilLog2(uint8_t(1<(1) ); STATIC_REQUIRE( 7 == bx::countTrailingZeros(1<<7) ); STATIC_REQUIRE( 8 == bx::countTrailingZeros(0) ); STATIC_REQUIRE( 1 == bx::countTrailingZeros(0x3e) ); STATIC_REQUIRE( 0 == bx::countTrailingZeros(1) ); STATIC_REQUIRE(15 == bx::countTrailingZeros(1<<15) ); STATIC_REQUIRE(16 == bx::countTrailingZeros(0) ); STATIC_REQUIRE( 0 == bx::countTrailingZeros(1) ); STATIC_REQUIRE(32 == bx::countTrailingZeros(0) ); STATIC_REQUIRE(31 == bx::countTrailingZeros(1u<<31) ); STATIC_REQUIRE( 0 == bx::countTrailingZeros(1) ); STATIC_REQUIRE(64 == bx::countTrailingZeros(0) ); } TEST_CASE("countLeadingZeros", "[math]") { STATIC_REQUIRE( 7 == bx::countLeadingZeros(1) ); STATIC_REQUIRE( 8 == bx::countLeadingZeros(0) ); STATIC_REQUIRE( 2 == bx::countLeadingZeros(0x3e) ); STATIC_REQUIRE(15 == bx::countLeadingZeros(1) ); STATIC_REQUIRE(16 == bx::countLeadingZeros(0) ); STATIC_REQUIRE(31 == bx::countLeadingZeros(1) ); STATIC_REQUIRE(32 == bx::countLeadingZeros(0) ); STATIC_REQUIRE(63 == bx::countLeadingZeros(1) ); STATIC_REQUIRE(64 == bx::countLeadingZeros(0) ); } TEST_CASE("countBits", "[math]") { STATIC_REQUIRE( 0 == bx::countBits(0) ); STATIC_REQUIRE( 1 == bx::countBits(1) ); STATIC_REQUIRE( 4 == bx::countBits(0x55) ); STATIC_REQUIRE( 8 == bx::countBits(0x5555) ); STATIC_REQUIRE(16 == bx::countBits(0x55555555) ); STATIC_REQUIRE(32 == bx::countBits(0x5555555555555555ull) ); STATIC_REQUIRE( 8 == bx::countBits(UINT8_MAX) ); STATIC_REQUIRE(16 == bx::countBits(UINT16_MAX) ); STATIC_REQUIRE(32 == bx::countBits(UINT32_MAX) ); STATIC_REQUIRE(64 == bx::countBits(UINT64_MAX) ); } template static void testFindFirstSet() { for (uint8_t ii = 0, num = sizeof(Ty)*8; ii < num; ++ii) { { const Ty val = Ty(1) << ii; const uint8_t result = bx::findFirstSet(val); REQUIRE(result == ii + 1); } { const Ty val = ( (Ty(1) << ii) ) | (Ty(1) << (num - 1) ); const uint8_t result = bx::findFirstSet(val); REQUIRE(result == ii + 1); } } } TEST_CASE("findFirstSet", "[math]") { STATIC_REQUIRE( 1 == bx::findFirstSet(1) ); STATIC_REQUIRE( 8 == bx::findFirstSet(1<<7) ); STATIC_REQUIRE( 0 == bx::findFirstSet(0) ); STATIC_REQUIRE( 2 == bx::findFirstSet(0x3e) ); STATIC_REQUIRE( 1 == bx::findFirstSet(1) ); STATIC_REQUIRE(16 == bx::findFirstSet(1<<15) ); STATIC_REQUIRE( 0 == bx::findFirstSet(0) ); STATIC_REQUIRE( 1 == bx::findFirstSet(1) ); STATIC_REQUIRE( 0 == bx::findFirstSet(0) ); STATIC_REQUIRE(32 == bx::findFirstSet(1u<<31) ); STATIC_REQUIRE( 1 == bx::findFirstSet(1) ); STATIC_REQUIRE( 0 == bx::findFirstSet(0) ); STATIC_REQUIRE(64 == bx::findFirstSet(0x8000000000000000ull) ); STATIC_REQUIRE( 1 == bx::findFirstSet(0x8000000000000001ull) ); testFindFirstSet(); testFindFirstSet(); testFindFirstSet(); testFindFirstSet(); } template static void testFindLastSet() { for (uint8_t ii = 0, num = sizeof(Ty)*8; ii < num; ++ii) { { const Ty val = Ty(1) << ii; const uint8_t result = bx::findLastSet(val); REQUIRE(result == ii + 1); } { const Ty val = (Ty(1) << ii) - 1; const uint8_t result = bx::findLastSet(val); REQUIRE(result == ii); } } } TEST_CASE("findLastSet", "[math]") { STATIC_REQUIRE( 1 == bx::findLastSet(1) ); STATIC_REQUIRE( 8 == bx::findLastSet(1<<7) ); STATIC_REQUIRE( 0 == bx::findLastSet(0) ); STATIC_REQUIRE( 6 == bx::findLastSet(0x3e) ); STATIC_REQUIRE( 1 == bx::findLastSet(1) ); STATIC_REQUIRE(16 == bx::findLastSet(1<<15) ); STATIC_REQUIRE( 0 == bx::findLastSet(0) ); STATIC_REQUIRE( 1 == bx::findLastSet(1) ); STATIC_REQUIRE( 0 == bx::findLastSet(0) ); STATIC_REQUIRE(32 == bx::findLastSet(1u<<31) ); STATIC_REQUIRE( 1 == bx::findLastSet(1) ); STATIC_REQUIRE( 0 == bx::findLastSet(0) ); STATIC_REQUIRE( 1 == bx::findLastSet(1ull) ); STATIC_REQUIRE(64 == bx::findLastSet(0x8000000000000000ull) ); STATIC_REQUIRE(64 == bx::findLastSet(0x8000000000000001ull) ); testFindLastSet(); testFindLastSet(); testFindLastSet(); testFindLastSet(); } BX_PRAGMA_DIAGNOSTIC_PUSH(); BX_PRAGMA_DIAGNOSTIC_IGNORED_MSVC(4723) // potential divide by 0 TEST_CASE("rcp", "[math][libm]") { STATIC_REQUIRE(1.0f == bx::rcp(1.0f) ); STATIC_REQUIRE(2.0f == bx::rcp(0.5f) ); } TEST_CASE("rcpSafe", "[math][libm]") { STATIC_REQUIRE(1.0f == bx::rcpSafe(1.0f) ); STATIC_REQUIRE(2.0f == bx::rcpSafe(0.5f) ); STATIC_REQUIRE(bx::isFinite(bx::rcpSafe( 0.0f) ) ); STATIC_REQUIRE(bx::isFinite(bx::rcpSafe(-0.0f) ) ); } TEST_CASE("rsqrt", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; // rsqrtRef STATIC_REQUIRE(bx::isInfinite(bx::rsqrtRef(0.0f) ) ); for (float xx = bx::kNearZero; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "rsqrtRef(%f) == %f (expected: %f)\n", xx, bx::rsqrtRef(xx), 1.0f / ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::rsqrtRef(xx), 1.0f / ::sqrtf(xx), 0.00001f) ); } // rsqrtSimd #if !defined(__FAST_MATH__) || !__FAST_MATH__ REQUIRE(bx::isInfinite(bx::rsqrtSimd(0.0f) ) ); #endif // !defined(__FAST_MATH__) || !__FAST_MATH__ for (float xx = bx::kNearZero; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "rsqrtSimd(%f) == %f (expected: %f)\n", xx, bx::rsqrtSimd(xx), 1.0f / ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::rsqrtSimd(xx), 1.0f / ::sqrtf(xx), 0.00001f) ); } // rsqrt #if !defined(__FAST_MATH__) || !__FAST_MATH__ REQUIRE(bx::isInfinite(1.0f / ::sqrtf(0.0f) ) ); REQUIRE(bx::isInfinite(bx::rsqrt(0.0f) ) ); #endif // !defined(__FAST_MATH__) || !__FAST_MATH__ for (float xx = bx::kNearZero; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "rsqrt(%f) == %f (expected: %f)\n", xx, bx::rsqrt(xx), 1.0f / ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::rsqrt(xx), 1.0f / ::sqrtf(xx), 0.00001f) ); } } TEST_CASE("sqrt", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; // sqrtRef STATIC_REQUIRE(bx::isNan(bx::sqrtRef(-1.0f) ) ); REQUIRE(bx::isEqual(bx::sqrtRef(0.0f), ::sqrtf(0.0f), 0.0f) ); REQUIRE(bx::isEqual(bx::sqrtRef(1.0f), ::sqrtf(1.0f), 0.0f) ); for (float xx = 0.0f; xx < 1000000.0f; xx += 1000.f) { bx::write(writer, &err, "sqrtRef(%f) == %f (expected: %f)\n", xx, bx::sqrtRef(xx), ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sqrtRef(xx), ::sqrtf(xx), 0.00001f) ); } // sqrtSimd REQUIRE(bx::isNan(bx::sqrtSimd(-1.0f) ) ); REQUIRE(bx::isEqual(bx::sqrtSimd(0.0f), ::sqrtf(0.0f), 0.00001f) ); REQUIRE(bx::isEqual(bx::sqrtSimd(1.0f), ::sqrtf(1.0f), 0.00001f) ); for (float xx = 0.0f; xx < 1000000.0f; xx += 1000.f) { bx::write(writer, &err, "sqrtSimd(%f) == %f (expected: %f)\n", xx, bx::sqrtSimd(xx), ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sqrtSimd(xx), ::sqrtf(xx), 0.00001f) ); } for (float xx = 0.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "sqrt(%f) == %f (expected: %f)\n", xx, bx::sqrt(xx), ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sqrt(xx), ::sqrtf(xx), 0.00001f) ); } // sqrt REQUIRE(bx::isNan(::sqrtf(-1.0f) ) ); REQUIRE(bx::isNan(bx::sqrt(-1.0f) ) ); REQUIRE(bx::isEqual(bx::sqrt(0.0f), ::sqrtf(0.0f), 0.00001f) ); REQUIRE(bx::isEqual(bx::sqrt(1.0f), ::sqrtf(1.0f), 0.00001f) ); for (float xx = 0.0f; xx < 1000000.0f; xx += 1000.f) { bx::write(writer, &err, "sqrt(%f) == %f (expected: %f)\n", xx, bx::sqrt(xx), ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sqrt(xx), ::sqrtf(xx), 0.00001f) ); } for (float xx = 0.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "sqrt(%f) == %f (expected: %f)\n", xx, bx::sqrt(xx), ::sqrtf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sqrt(xx), ::sqrtf(xx), 0.00001f) ); } } BX_PRAGMA_DIAGNOSTIC_POP(); TEST_CASE("abs", "[math][libm]") { STATIC_REQUIRE(1389.0f == bx::abs(-1389.0f) ); STATIC_REQUIRE(1389.0f == bx::abs( 1389.0f) ); STATIC_REQUIRE( 0.0f == bx::abs(-0.0f) ); STATIC_REQUIRE( 0.0f == bx::abs( 0.0f) ); } TEST_CASE("mod", "[math][libm]") { STATIC_REQUIRE(389.0f == bx::mod(1389.0f, 1000.0f) ); STATIC_REQUIRE( 89.0f == bx::mod(1389.0f, 100.0f) ); STATIC_REQUIRE( 9.0f == bx::mod(1389.0f, 10.0f) ); STATIC_REQUIRE( 4.0f == bx::mod(1389.0f, 5.0f) ); STATIC_REQUIRE( 1.0f == bx::mod(1389.0f, 2.0f) ); } typedef float (*MathFloatFn)(float); template static void testMathFunc1Float(float _value) { REQUIRE(CrtT(_value) == BxT(_value) ); } TEST_CASE("floor", "[math][libm]") { STATIC_REQUIRE( 13.0f == bx::floor( 13.89f) ); STATIC_REQUIRE(-14.0f == bx::floor(-13.89f) ); testMathFunc1Float( 13.89f); testMathFunc1Float(-13.89f); } TEST_CASE("ceil", "[math][libm]") { STATIC_REQUIRE( 14.0f == bx::ceil( 13.89f) ); STATIC_REQUIRE(-13.0f == bx::ceil( -13.89f) ); testMathFunc1Float( 13.89f); testMathFunc1Float(-13.89f); } TEST_CASE("round", "[math][libm]") { STATIC_REQUIRE( 14.0f == bx::round( 13.89f) ); STATIC_REQUIRE(-14.0f == bx::round( -13.89f) ); testMathFunc1Float( 13.89f); testMathFunc1Float(-13.89f); } TEST_CASE("trunc", "[math][libm]") { STATIC_REQUIRE( 13.0f == bx::trunc( 13.89f) ); STATIC_REQUIRE(-13.0f == bx::trunc(-13.89f) ); testMathFunc1Float( 13.89f); testMathFunc1Float(-13.89f); } TEST_CASE("fract", "[math][libm]") { STATIC_REQUIRE(bx::isEqual( 0.89f, bx::fract( 13.89f), 0.000001f) ); STATIC_REQUIRE(bx::isEqual(-0.89f, bx::fract(-13.89f), 0.000001f) ); } TEST_CASE("ldexp", "[math][libm]") { STATIC_REQUIRE( 1389.0f == bx::ldexp(86.8125, 4) ); STATIC_REQUIRE(0.437500f == bx::ldexp(7.0f, -4) ); STATIC_REQUIRE(bx::isEqual(-0.0f, bx::ldexp(-0.0f, 10), 0.000000001f) ); STATIC_REQUIRE(0x1p127f == bx::ldexp(1.0f, 127) ); STATIC_REQUIRE(0x1p-126f == bx::ldexp(1.0f, -126) ); STATIC_REQUIRE(0x1p24f == bx::ldexp(1.0f, 24) ); bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (int32_t yy = -10; yy < 10; ++yy) { for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "ldexp(%f, %d) == %f (expected: %f)\n", xx, yy, bx::ldexp(xx, yy), ::ldexpf(xx, yy) ); REQUIRE(bx::isEqual(bx::ldexp(xx, yy), ::ldexpf(xx, yy), 0.00001f) ); } } } TEST_CASE("exp", "[math][libm]") { STATIC_REQUIRE( 1.0f == bx::exp(-0.0f) ); STATIC_REQUIRE( 0.0f == bx::exp(-bx::kFloatInfinity) ); STATIC_REQUIRE( 0.0f == bx::exp(bx::log(bx::kFloatSmallest) ) ); bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -80.0f; xx < 80.0f; xx += 0.1f) { bx::write(writer, &err, "exp(%f) == %f (expected: %f)\n", xx, bx::exp(xx), ::expf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::exp(xx), ::expf(xx), 0.00001f) ); } } TEST_CASE("pow", "[math][libm]") { STATIC_REQUIRE(1.0f == bx::pow(0.0f, 0.0f) ); STATIC_REQUIRE(1.0f == bx::pow(1.0f, 0.0f) ); STATIC_REQUIRE(1.0f == bx::pow(3.0f, 0.0f) ); STATIC_REQUIRE(1.0f == bx::pow(8.0f, 0.0f) ); STATIC_REQUIRE(1.0f == bx::pow(9.0f, 0.0f) ); STATIC_REQUIRE(0.0f == bx::pow(0.0f, 2.0f) ); STATIC_REQUIRE( 4.0f == bx::pow( 2.0f, 2.0f) ); STATIC_REQUIRE( -4.0f == bx::pow(-2.0f, 2.0f) ); STATIC_REQUIRE( 0.25f == bx::pow( 2.0f, -2.0f) ); STATIC_REQUIRE( -0.25f == bx::pow(-2.0f, -2.0f) ); STATIC_REQUIRE( 8.0f == bx::pow( 2.0f, 3.0f) ); STATIC_REQUIRE( -8.0f == bx::pow(-2.0f, 3.0f) ); STATIC_REQUIRE( 0.125f == bx::pow( 2.0f, -3.0f) ); STATIC_REQUIRE(-0.125f == bx::pow(-2.0f, -3.0f) ); bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "pow(1.389f, %f) == %f (expected: %f)\n", xx, bx::pow(1.389f, xx), ::powf(1.389f, xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::pow(1.389f, xx), ::powf(1.389f, xx), 0.00001f) ); } } TEST_CASE("asin", "[math][libm]") { STATIC_REQUIRE(bx::isEqual( 0.0f, bx::asin(0.0f), 0.0001f) ); STATIC_REQUIRE(bx::isEqual(bx::kPiHalf, bx::asin(1.0f), 0.0001f) ); bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -1.0f; xx < 1.0f; xx += 0.001f) { bx::write(writer, &err, "asin(%f) == %f (expected: %f)\n", xx, bx::asin(xx), ::asinf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::asin(xx), ::asinf(xx), 0.0001f) ); } } TEST_CASE("sin", "[math][libm]") { STATIC_REQUIRE(bx::isEqual( 0.0f, bx::sin(0.0f ), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual( 1.0f, bx::sin(bx::kPiHalf ), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual( 0.0f, bx::sin(bx::kPi ), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(-1.0f, bx::sin(bx::kPiHalf*3.0f), 0.0000001f) ); bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "sin(%f) == %f (expected: %f)\n", xx, bx::sin(xx), ::sinf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sin(xx), ::sinf(xx), 0.00001f) ); } for (float xx = -bx::kPi2; xx < bx::kPi2; xx += 0.0001f) { bx::write(writer, &err, "sin(%f) == %f (expected: %f)\n", xx, bx::sin(xx), ::sinf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sin(xx), ::sinf(xx), 0.00001f) ); } } TEST_CASE("sinCos", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { float ss, cc; bx::sinCosApprox(ss, cc, xx); bx::write(writer, &err, "sinCos(%f) == sin %f (expected: %f)\n", xx, ss, ::sinf(xx) ); bx::write(writer, &err, "sinCos(%f) == cos %f (expected: %f)\n", xx, cc, ::cosf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(ss, ::sinf(xx), 0.001f) ); REQUIRE(bx::isEqual(cc, ::cosf(xx), 0.00001f) ); } for (float xx = -bx::kPi2; xx < bx::kPi2; xx += 0.0001f) { float ss, cc; bx::sinCosApprox(ss, cc, xx); bx::write(writer, &err, "sinCos(%f) == sin %f (expected: %f)\n", xx, ss, ::sinf(xx) ); bx::write(writer, &err, "sinCos(%f) == cos %f (expected: %f)\n", xx, cc, ::cosf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(ss, ::sinf(xx), 0.001f) ); REQUIRE(bx::isEqual(cc, ::cosf(xx), 0.00001f) ); } } TEST_CASE("sinh", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -1.0f; xx < 1.0f; xx += 0.1f) { bx::write(writer, &err, "sinh(%f) == %f (expected: %f)\n", xx, bx::sinh(xx), ::sinhf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::sinh(xx), ::sinhf(xx), 0.00001f) ); } } TEST_CASE("acos", "[math][libm]") { STATIC_REQUIRE(bx::isEqual(bx::kPiHalf, bx::acos(0.0f), 0.0001f) ); STATIC_REQUIRE(bx::isEqual( 0.0f, bx::acos(1.0f), 0.0001f) ); bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -1.0f; xx < 1.0f; xx += 0.001f) { bx::write(writer, &err, "acos(%f) == %f (expected: %f\n)", xx, bx::acos(xx), ::acosf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::acos(xx), ::acosf(xx), 0.0001f) ); } } TEST_CASE("cos", "[math][libm]") { STATIC_REQUIRE(bx::isEqual( 1.0f, bx::cos(0.0f ), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual( 0.0f, bx::cos(bx::kPiHalf ), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual(-1.0f, bx::cos(bx::kPi ), 0.0000001f) ); STATIC_REQUIRE(bx::isEqual( 0.0f, bx::cos(bx::kPiHalf*3.0f), 0.0000001f) ); bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "cos(%f) == %f (expected: %f)\n", xx, bx::cos(xx), ::cosf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::cos(xx), ::cosf(xx), 0.00001f) ); } for (float xx = -bx::kPi2; xx < bx::kPi2; xx += 0.0001f) { bx::write(writer, &err, "cos(%f) == %f (expected: %f)\n", xx, bx::cos(xx), ::cosf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::cos(xx), ::cosf(xx), 0.00001f) ); } } TEST_CASE("tan", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "tan(%f) == %f (expected: %f)\n", xx, bx::tan(xx), ::tanf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::tan(xx), ::tanf(xx), 0.001f) ); } } TEST_CASE("tanh", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -1.0f; xx < 1.0f; xx += 0.1f) { bx::write(writer, &err, "tanh(%f) == %f (expected: %f\n", xx, bx::tanh(xx), ::tanhf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::tanh(xx), ::tanhf(xx), 0.00001f) ); } } TEST_CASE("atan", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "atan(%f) == %f (expected: %f)\n", xx, bx::atan(xx), ::atanf(xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::atan(xx), ::atanf(xx), 0.00001f) ); } } TEST_CASE("atan2", "[math][libm]") { bx::WriterI* writer = bx::getNullOut(); bx::Error err; REQUIRE(bx::isEqual(bx::atan2(0.0f, 0.0f), ::atan2f(0.0f, 0.0f), 0.00001f) ); REQUIRE(bx::isEqual(bx::atan2(0.0f, 1.0f), ::atan2f(0.0f, 1.0f), 0.00001f) ); REQUIRE(bx::isEqual(bx::atan2(0.0f, -1.0f), ::atan2f(0.0f, -1.0f), 0.00001f) ); for (float yy = -100.0f; yy < 100.0f; yy += 0.1f) { for (float xx = -100.0f; xx < 100.0f; xx += 0.1f) { bx::write(writer, &err, "atan2(%f, %f) == %f (expected: %f)\n", yy, xx, bx::atan2(yy, xx), ::atan2f(yy, xx) ); REQUIRE(err.isOk() ); REQUIRE(bx::isEqual(bx::atan2(yy, xx), ::atan2f(yy, xx), 0.00001f) ); } } } TEST_CASE("sign", "[math][libm]") { STATIC_REQUIRE(-1 == bx::sign(-0.1389f) ); STATIC_REQUIRE( 0 == bx::sign( 0.0000f) ); STATIC_REQUIRE( 1 == bx::sign( 0.1389f) ); STATIC_REQUIRE(-1 == bx::sign(-bx::kFloatInfinity) ); STATIC_REQUIRE( 1 == bx::sign( bx::kFloatInfinity) ); } TEST_CASE("signBit", "[math][libm]") { STATIC_REQUIRE( bx::signBit(-0.1389f) ); STATIC_REQUIRE(!bx::signBit( 0.0000f) ); STATIC_REQUIRE(!bx::signBit( 0.1389f) ); STATIC_REQUIRE( bx::signBit(-bx::kFloatInfinity) ); STATIC_REQUIRE(!bx::signBit( bx::kFloatInfinity) ); } TEST_CASE("copySign", "[math][libm]") { STATIC_REQUIRE( 0.1389f == bx::copySign(-0.1389f, +1389) ); STATIC_REQUIRE(-0.0000f == bx::copySign( 0.0000f, -1389) ); STATIC_REQUIRE(-0.1389f == bx::copySign( 0.1389f, -1389) ); STATIC_REQUIRE(-bx::kFloatInfinity == bx::copySign(bx::kFloatInfinity, -1389) ); } TEST_CASE("bitsToFloat, floatToBits, bitsToDouble, doubleToBits", "[math]") { STATIC_REQUIRE(0x12345678u == bx::floatToBits( bx::bitsToFloat (0x12345678u) ) ); STATIC_REQUIRE(0x123456789abcdef0ull == bx::doubleToBits(bx::bitsToDouble(0x123456789abcdef0ull) ) ); } TEST_CASE("lerp", "[math]") { STATIC_REQUIRE(1389.0f == bx::lerp(1389.0f, 1453.0f, 0.0f) ); STATIC_REQUIRE(1453.0f == bx::lerp(1389.0f, 1453.0f, 1.0f) ); STATIC_REQUIRE( 0.5f == bx::lerp( 0.0f, 1.0f, 0.5f) ); STATIC_REQUIRE( 0.0f == bx::lerp( 0.0f, 0.0f, 0.5f) ); } void mtxCheck(const float* _a, const float* _b) { if (!bx::isEqual(_a, _b, 16, 0.01f) ) { DBG("\n" "A:\n" "%10.4f %10.4f %10.4f %10.4f\n" "%10.4f %10.4f %10.4f %10.4f\n" "%10.4f %10.4f %10.4f %10.4f\n" "%10.4f %10.4f %10.4f %10.4f\n" "B:\n" "%10.4f %10.4f %10.4f %10.4f\n" "%10.4f %10.4f %10.4f %10.4f\n" "%10.4f %10.4f %10.4f %10.4f\n" "%10.4f %10.4f %10.4f %10.4f\n" , _a[ 0], _a[ 1], _a[ 2], _a[ 3] , _a[ 4], _a[ 5], _a[ 6], _a[ 7] , _a[ 8], _a[ 9], _a[10], _a[11] , _a[12], _a[13], _a[14], _a[15] , _b[ 0], _b[ 1], _b[ 2], _b[ 3] , _b[ 4], _b[ 5], _b[ 6], _b[ 7] , _b[ 8], _b[ 9], _b[10], _b[11] , _b[12], _b[13], _b[14], _b[15] ); REQUIRE(false); } } TEST_CASE("vec3", "[math][vec3]") { REQUIRE(bx::isEqual({0.0f, 0.0f, 0.0f}, bx::normalize({0.0f, 0.0f, 0.0f}), 0.0f) ); bx::Vec3 normalized = bx::normalize({0.0f, 1.0f, 0.0f}); REQUIRE(bx::isEqual(normalized, {0.0f, 1.0f, 0.0f}, 0.00001f) ); float length = bx::length(normalized); REQUIRE(bx::isEqual(length, 1.0f, 0.00001f) ); } TEST_CASE("quaternion", "[math][quaternion]") { float mtxQ[16]; float mtx[16]; bx::Quaternion quat = bx::InitIdentity; bx::Quaternion q2 = bx::InitNone; bx::Vec3 axis = bx::InitNone; bx::Vec3 euler = bx::InitNone; float angle; bx::mtxFromQuaternion(mtxQ, quat); bx::mtxIdentity(mtx); mtxCheck(mtxQ, mtx); float ax = bx::kPi/27.0f; float ay = bx::kPi/13.0f; float az = bx::kPi/7.0f; { // x quat = bx::rotateX(ax); bx::mtxFromQuaternion(mtxQ, quat); bx::mtxRotateX(mtx, ax); mtxCheck(mtxQ, mtx); bx::toAxisAngle(axis, angle, quat); REQUIRE(bx::isEqual(axis, bx::Vec3{1.0f, 0.0f, 0.0f}, 0.01f) ); REQUIRE(bx::isEqual(angle, ax, 0.01f) ); euler = bx::toEuler(quat); REQUIRE(bx::isEqual(euler.x, ax, 0.001f) ); q2 = bx::fromEuler(euler); REQUIRE(bx::isEqual(quat, q2, 0.001f) ); } { // y quat = bx::rotateY(ay); bx::mtxFromQuaternion(mtxQ, quat); bx::mtxRotateY(mtx, ay); mtxCheck(mtxQ, mtx); bx::toAxisAngle(axis, angle, quat); REQUIRE(bx::isEqual(axis, bx::Vec3{0.0f, 1.0f, 0.0f}, 0.01f) ); REQUIRE(bx::isEqual(angle, ay, 0.01f) ); euler = bx::toEuler(quat); REQUIRE(bx::isEqual(euler.y, ay, 0.001f) ); q2 = bx::fromEuler(euler); REQUIRE(bx::isEqual(quat, q2, 0.001f) ); } { // z quat = bx::rotateZ(az); bx::mtxFromQuaternion(mtxQ, quat); bx::mtxRotateZ(mtx, az); mtxCheck(mtxQ, mtx); bx::toAxisAngle(axis, angle, quat); REQUIRE(bx::isEqual(axis, bx::Vec3{0.0f, 0.0f, 1.0f}, 0.01f) ); REQUIRE(bx::isEqual(angle, az, 0.01f) ); euler = bx::toEuler(quat); REQUIRE(bx::isEqual(euler.z, az, 0.001f) ); q2 = bx::fromEuler(euler); REQUIRE(bx::isEqual(quat, q2, 0.001f) ); } } TEST_CASE("limits", "[math]") { STATIC_REQUIRE(bx::LimitsT::min == INT8_MIN); STATIC_REQUIRE(bx::LimitsT::max == INT8_MAX); STATIC_REQUIRE(bx::LimitsT::min == CHAR_MIN); STATIC_REQUIRE(bx::LimitsT::max == CHAR_MAX); STATIC_REQUIRE(bx::LimitsT::min == 0); STATIC_REQUIRE(bx::LimitsT::max == UCHAR_MAX); STATIC_REQUIRE(bx::LimitsT::min == INT16_MIN); STATIC_REQUIRE(bx::LimitsT::max == INT16_MAX); STATIC_REQUIRE(bx::LimitsT::min == 0); STATIC_REQUIRE(bx::LimitsT::max == UINT16_MAX); STATIC_REQUIRE(bx::LimitsT::min == INT32_MIN); STATIC_REQUIRE(bx::LimitsT::max == INT32_MAX); STATIC_REQUIRE(bx::LimitsT::min == 0); STATIC_REQUIRE(bx::LimitsT::max == UINT32_MAX); STATIC_REQUIRE(bx::LimitsT::min == INT64_MIN); STATIC_REQUIRE(bx::LimitsT::max == INT64_MAX); STATIC_REQUIRE(bx::LimitsT::min == 0); STATIC_REQUIRE(bx::LimitsT::max == UINT64_MAX); STATIC_REQUIRE(bx::LimitsT::min == std::numeric_limits::lowest() ); STATIC_REQUIRE(bx::LimitsT::max == std::numeric_limits::max() ); STATIC_REQUIRE(bx::LimitsT::min == std::numeric_limits::lowest() ); STATIC_REQUIRE(bx::LimitsT::max == std::numeric_limits::max() ); STATIC_REQUIRE(bx::kFloatSmallest == std::numeric_limits::min() ); STATIC_REQUIRE(bx::kDoubleSmallest == std::numeric_limits::min() ); }