Небольшие исправления в модульных тестах

This commit is contained in:
Andrey Pokidov 2025-02-12 12:35:10 +07:00
parent 2d8240265c
commit fffe2be43b
8 changed files with 132 additions and 92 deletions

View file

Internal server error - Personal Git Server: Beyond coding. We Forge.

500

Internal server error

Forgejo version: 11.0.1+gitea-1.22.0

@ -9,28 +9,28 @@ static const int _TEST_FP32_NONZERO_QUATERNION_AMOUNT = 11;
static const BgcQuaternionFP32 _TEST_FP32_ZERO_QUATERNION_LIST[] = {
{ 0.0f, 0.0f, 0.0f, 0.0f },
{ BGC_EPSYLON_FP32, 0.0f, 0.0f, 0.0f },
{ -BGC_EPSYLON_FP32, 0.0f, 0.0f, 0.0f },
{ 0.0f, BGC_EPSYLON_FP32, 0.0f, 0.0f },
{ 0.0f, -BGC_EPSYLON_FP32, 0.0f, 0.0f },
{ 0.0f, 0.0f, BGC_EPSYLON_FP32, 0.0f },
{ 0.0f, 0.0f, -BGC_EPSYLON_FP32, 0.0f },
{ 0.0f, 0.0f, 0.0f, BGC_EPSYLON_FP32 },
{ 0.0f, 0.0f, 0.0f, -BGC_EPSYLON_FP32 }
{ 0.75f * BGC_EPSYLON_FP32, 0.0f, 0.0f, 0.0f },
{ -0.75f * BGC_EPSYLON_FP32, 0.0f, 0.0f, 0.0f },
{ 0.0f, 0.75f * BGC_EPSYLON_FP32, 0.0f, 0.0f },
{ 0.0f, -0.75f * BGC_EPSYLON_FP32, 0.0f, 0.0f },
{ 0.0f, 0.0f, 0.75f * BGC_EPSYLON_FP32, 0.0f },
{ 0.0f, 0.0f, -0.75f * BGC_EPSYLON_FP32, 0.0f },
{ 0.0f, 0.0f, 0.0f, 0.75f * BGC_EPSYLON_FP32 },
{ 0.0f, 0.0f, 0.0f, -0.75f * BGC_EPSYLON_FP32 }
};
static const BgcQuaternionFP32 _TEST_FP32_NONZERO_QUATERION_LIST[] = {
{ 0.0f, 1.0f, 0.0f, 0.0f },
{ 1.5f * BGC_EPSYLON_FP32, 0.0f, 0.0f, 0.0f },