int main() { int Error = 0; Error += test_quat_precision(); Error += test_quat_type(); Error += test_quat_angle(); Error += test_quat_angleAxis(); Error += test_quat_mix(); Error += test_quat_normalize(); return Error; }
int main() { int Error = 0; Error += test_quat_angle(); Error += test_quat_angleAxis(); Error += test_quat_mix(); Error += test_quat_fastMix(); Error += test_quat_shortMix(); Error += test_quat_normalize(); return Error; }
int main() { int Error(0); Error += test_quat_precision(); Error += test_quat_type(); Error += test_quat_angle(); Error += test_quat_angleAxis(); Error += test_quat_mix(); Error += test_quat_normalize(); Error += test_quat_euler(); Error += test_quat_slerp(); return Error; }
int main() { int Error = 0; Error += test_quat_ctr(); Error += test_quat_mul_vec(); Error += test_quat_two_axis_ctr(); Error += test_quat_mul(); Error += test_quat_precision(); Error += test_quat_type(); Error += test_quat_angle(); Error += test_quat_angleAxis(); Error += test_quat_mix(); Error += test_quat_normalize(); Error += test_quat_euler(); Error += test_quat_slerp(); Error += test_size(); return Error; }
int main() { int Error(0); #ifdef GLM_META_PROG_HELPERS assert(glm::quat::components == 4); assert(glm::quat::components == glm::quat().length()); #endif Error += test_quat_ctr(); Error += test_quat_mul_vec(); Error += test_quat_two_axis_ctr(); Error += test_quat_mul(); Error += test_quat_precision(); Error += test_quat_type(); Error += test_quat_angle(); Error += test_quat_angleAxis(); Error += test_quat_mix(); Error += test_quat_normalize(); Error += test_quat_euler(); Error += test_quat_slerp(); return Error; }