Formatting change

This commit is contained in:
Alex Selimov 2025-07-14 10:37:35 -04:00
parent 62e52940bc
commit 746face829
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31

View file

@ -3,8 +3,7 @@
#include <iostream>
int main() {
Particle<float> test = {
{0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, 10};
Particle test = {{0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}, 10};
std::cout << test.pos.x << " " << test.pos.y << " " << test.pos.z;
return 0;
}