Переход на версию 0.3: изменение подхода к именованию сущностей, добавление, изменение и удаление ряда функций
This commit is contained in:
parent
d33daf4e2d
commit
f7e41645fe
87 changed files with 4580 additions and 4051 deletions
|
|
@ -7,7 +7,7 @@
|
|||
// ==================== FP32 ==================== //
|
||||
|
||||
static const int _TEST_FP32_QUATERNION_AMOUNT = 4;
|
||||
static const BgcQuaternionFP32 _TEST_FP32_QUATERNION_LIST[] = {
|
||||
static const BGC_FP32_Quaternion _TEST_FP32_QUATERNION_LIST[] = {
|
||||
{ 1.0f, 2.0f, 3.0f, 4.0f },
|
||||
{ -4.0f, -3.0f, -2.0f, -1.0f },
|
||||
{ -0.001f, 100.0f, -100.0f, 0.001f },
|
||||
|
|
@ -16,13 +16,13 @@ static const BgcQuaternionFP32 _TEST_FP32_QUATERNION_LIST[] = {
|
|||
|
||||
void test_quaternion_copy_fp32()
|
||||
{
|
||||
BgcQuaternionFP32 vector;
|
||||
BGC_FP32_Quaternion vector;
|
||||
|
||||
print_testing_name("bgc_quaternion_copy_fp32");
|
||||
print_testing_name("bgc_fp32_quaternion_copy");
|
||||
|
||||
for (int i = 0; i < _TEST_FP32_QUATERNION_AMOUNT; i++) {
|
||||
|
||||
bgc_quaternion_copy_fp32(&_TEST_FP32_QUATERNION_LIST[i], &vector);
|
||||
bgc_fp32_quaternion_copy(&_TEST_FP32_QUATERNION_LIST[i], &vector);
|
||||
|
||||
if (vector.s0 != _TEST_FP32_QUATERNION_LIST[i].s0 ||
|
||||
vector.x1 != _TEST_FP32_QUATERNION_LIST[i].x1 ||
|
||||
|
|
@ -39,7 +39,7 @@ void test_quaternion_copy_fp32()
|
|||
// ==================== FP64 ==================== //
|
||||
|
||||
static const int _TEST_FP64_QUATERNION_AMOUNT = 4;
|
||||
static const BgcQuaternionFP64 _TEST_FP64_QUATERNION_LIST[] = {
|
||||
static const BGC_FP64_Quaternion _TEST_FP64_QUATERNION_LIST[] = {
|
||||
{ 1.0, 2.0, 3.0, 4.0 },
|
||||
{ -4.0, -3.0, -2.0, -1.0 },
|
||||
{ -0.001, 100.0, -100.0, 0.001 },
|
||||
|
|
@ -48,13 +48,13 @@ static const BgcQuaternionFP64 _TEST_FP64_QUATERNION_LIST[] = {
|
|||
|
||||
void test_quaternion_copy_fp64()
|
||||
{
|
||||
BgcQuaternionFP64 vector;
|
||||
BGC_FP64_Quaternion vector;
|
||||
|
||||
print_testing_name("bgc_quaternion_copy_fp64");
|
||||
print_testing_name("bgc_fp64_quaternion_copy");
|
||||
|
||||
for (int i = 0; i < _TEST_FP64_QUATERNION_AMOUNT; i++) {
|
||||
|
||||
bgc_quaternion_copy_fp64(&_TEST_FP64_QUATERNION_LIST[i], &vector);
|
||||
bgc_fp64_quaternion_copy(&_TEST_FP64_QUATERNION_LIST[i], &vector);
|
||||
|
||||
if (vector.s0 != _TEST_FP64_QUATERNION_LIST[i].s0 ||
|
||||
vector.x1 != _TEST_FP64_QUATERNION_LIST[i].x1 ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue