コード例 #1
0
ファイル: tester.cpp プロジェクト: Toeger/ARPGT1
bool Tester::run() {
	test_physics_utility();
	test_collisions();
	test_ecs();
	test_perlin();
	test_skill_loader();
	return true;
}
コード例 #2
0
int main()
{
	int Error = 0;

	Error += test_simplex();
	Error += test_perlin();
	Error += test_perlin_pedioric();

	return Error;
}
コード例 #3
0
ファイル: gtc_noise.cpp プロジェクト: mcquui/root-hub
int main(int argc, char* argv[] )
{
        std::string path = *argv;
        
        auto to = path.rfind("gtc_noise");
        if ( to != std::string::npos )
        {
            prefix_path = path.substr(0, to);
        }
        
	int Error = 0;

	Error += test_simplex();
	Error += test_perlin();
	Error += test_perlin_pedioric();

	return Error;
}