Beispiel #1
0
int main()
{
	int Error = 0;
    
	Error += test_quat_precision();
    Error += test_quat_type();

	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();

    return Error;
}
Beispiel #3
0
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;
}
Beispiel #4
0
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;
}
Beispiel #5
0
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;
}