Removed noise from test output
This commit is contained in:
parent
a508e4236e
commit
d044cb1567
3 changed files with 11 additions and 9 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue