Added test for quat type component length() static #565
This commit is contained in:
@@ -174,15 +174,30 @@ int test_dual_quat_ctr()
|
||||
return Error;
|
||||
}
|
||||
|
||||
int test_size()
|
||||
{
|
||||
int Error = 0;
|
||||
|
||||
Error += 32 == sizeof(glm::dualquat) ? 0 : 1;
|
||||
Error += 64 == sizeof(glm::ddualquat) ? 0 : 1;
|
||||
Error += glm::dualquat().length() == 2 ? 0 : 1;
|
||||
Error += glm::ddualquat().length() == 2 ? 0 : 1;
|
||||
Error += glm::dualquat::length() == 2 ? 0 : 1;
|
||||
Error += glm::ddualquat::length() == 2 ? 0 : 1;
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int Error(0);
|
||||
int Error = 0;
|
||||
|
||||
Error += test_dual_quat_ctr();
|
||||
Error += test_dquat_type();
|
||||
Error += test_scalars();
|
||||
Error += test_inverse();
|
||||
Error += test_mul();
|
||||
Error += test_size();
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ int test_log()
|
||||
|
||||
int main()
|
||||
{
|
||||
int Error(0);
|
||||
int Error = 0;
|
||||
|
||||
Error += test_log();
|
||||
Error += test_rotation();
|
||||
|
||||
Reference in New Issue
Block a user