Particle_Simulator/Cpp_Stuff
2025-04-04 00:04:45 -04:00
..
assets Updating cmake and cpp readme 2025-04-04 00:03:25 -04:00
include Initial commit 2024-11-23 21:59:28 -05:00
sdl_sprites Initial commit 2024-11-23 21:59:28 -05:00
src Updating cmake and cpp readme 2025-04-04 00:03:25 -04:00
CMakeLists.txt Initial commit 2024-11-23 21:59:28 -05:00
README.md Fixing markdown cause I'm bad at markdown 2025-04-04 00:04:45 -04:00

C++ Particle Sim

This is still very much a work not really in progress!

TODO

  • Particle collisions with the walls
  • Particle gravities
  • Particle collision with other particles
  • Maybe add a 3rd dimension?

Building and Running

You're on your own with figuring out how to install cuda...but in theory once that's installed it should be pretty straight forward:

cmake -S ./ -B build/
cmake --build build/
cd build/
./src/particle_sim_exe

Current system runs 10,000 particles at 50fps. The gif below only appears to be moving slow because the time steps between renders is much lower then in the python example. The frame is actually higher here then it was in python.