コード例 #1
0
ファイル: rotation-test.c プロジェクト: bemasc/opus-multimode
int main(void)
{
   test_rotation(15, 3);
   test_rotation(23, 5);
   test_rotation(50, 3);
   test_rotation(80, 1);
   return ret;
}
コード例 #2
0
ファイル: test_unit_rotation.c プロジェクト: Geekbruce/vock
int main(void)
{
   ALLOC_STACK;
   test_rotation(15, 3);
   test_rotation(23, 5);
   test_rotation(50, 3);
   test_rotation(80, 1);
   return ret;
}
コード例 #3
0
ファイル: gtx_quaternion.cpp プロジェクト: Jawsarn/3D-Pacman
int main()
{
	int Error(0);

	Error += test_rotation();
	Error += test_quat_fastMix();
	Error += test_quat_shortMix();

	return Error;
}
コード例 #4
0
ファイル: test_e3.cpp プロジェクト: ghali/DelCapo
int main()
{
    test_op();
    test_Transformation_E3();
    test_Transformation_E3_operator_mult();
    test_rotation();
    test_inverse();
    test_Bbox_E3_operator_incr();
    test_polygon_Bbox();
    test_polygon_quad_subdivide();
    test_polygon_normal();

    test_dominant();

    runme();
}