cudaCAC/main.cpp

10 lines
234 B
C++
Raw Normal View History

#include "particle.hpp"
#include "vec3.h"
2025-04-15 14:10:01 -04:00
#include <iostream>
2017-12-28 11:15:19 -07:00
int main() {
2025-07-14 10:37:35 -04:00
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;
2017-12-28 11:15:19 -07:00
return 0;
2025-04-15 14:10:01 -04:00
}