Skip to content

sebajun9/VerletSDL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VerletSDL

Thumbnail

This is a simple physics engine written in SDL2 for practice.
It was made by closely following this video by johnBuffer:
Video

His repo can be found here: https://github.com/johnBuffer/VerletSFML

Build

Using Visual Studio

  1. Clone this repo.
  2. Open VarletSDL/ in Visual Studio and compile the Release version.

Using MSVC

git clone https://github.com/donhn/VerletSDL
cd VerletSDL
mkdir build
cd build
cmake ..
cmake --build . --config Release
./Release/verlet-sdl.exe

Using GCC and Ninja

git clone https://github.com/donhn/VerletSDL
cd VerletSDL
mkdir build
cd build
cmake -GNinja ..
cmake --build .
./bin/verlet-sim.exe

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published