This is a simple physics engine written in SDL2 for practice.
It was made by closely following this video by johnBuffer:
His repo can be found here: https://github.com/johnBuffer/VerletSFML
- Clone this repo.
- Open VarletSDL/ in Visual Studio and compile the Release version.
git clone https://github.com/donhn/VerletSDL
cd VerletSDL
mkdir build
cd build
cmake ..
cmake --build . --config Release
./Release/verlet-sdl.exe
git clone https://github.com/donhn/VerletSDL
cd VerletSDL
mkdir build
cd build
cmake -GNinja ..
cmake --build .
./bin/verlet-sim.exe