Removed noise from test output

This commit is contained in:
vegowotenks 2025-02-28 23:13:30 +01:00
parent a508e4236e
commit d044cb1567
3 changed files with 11 additions and 9 deletions

View file

@ -19,7 +19,7 @@ int main()
for (size_t i = 0; i < sizeof(particles) / sizeof(particles[0]); i++) {
particles[i].position.x = xoshiro256_next(&rand_state) % 10000;
particles[i].position.y = xoshiro256_next(&rand_state) % 10000;
printf("%f %f\n", particles[i].position.y, particles[i].position.x);
// printf("%f %f\n", particles[i].position.y, particles[i].position.x);
QuadTree_Insert(&tree, &particles[i].position);
}
}