From 83b1c06b186614d1bf2171feb46754bd8a8e6dfa Mon Sep 17 00:00:00 2001 From: esquizo Date: Wed, 3 Jun 2026 16:10:57 -0300 Subject: libphysics removido (ideia jogada fora) --- libphysics/test/perf.c | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 libphysics/test/perf.c (limited to 'libphysics/test/perf.c') diff --git a/libphysics/test/perf.c b/libphysics/test/perf.c deleted file mode 100644 index 7e2dd51..0000000 --- a/libphysics/test/perf.c +++ /dev/null @@ -1,35 +0,0 @@ -#include -#include -#include -#include - -#define SBODY 8192 -#define FLOAT_RAND (2 * (rand() / (float)RAND_MAX) - 1) - -int -main() -{ - for(int i = 0; i < SBODY; i++) { - BodyID b = phxnew(BTYPE_AABB); - assert(b != -1); - - phxsetpos(b, rand() % 800, rand() % 600); - phxsetsize(b, 5.0, 5.0); - phxapplyaccel(b, (float[]){ 50000 * FLOAT_RAND, 50000 * FLOAT_RAND }); - } - - phxsetmap(8, 8, (int[]) { - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 0, 0, 0, 1, 0, 0, - 0, 1, 1, 0, 0, 1, 1, 0, - 0, 1, 1, 0, 0, 1, 1, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 1, 0, 0, 1, 1, 0, - 0, 1, 1, 0, 0, 1, 1, 0, - 0, 0, 1, 0, 0, 0, 1, 0, - }); - - phxtick(10.0); - - return 0; -} -- cgit v1.2.3