Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 661 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 661 Bytes

Verlet Simulation

This project is a naive example of a simple physics engine using the Verlet integration.

Installation

In first build Visual Studio will throw error in runtime. To solve the error:

  • Copy SFML debug dll files into the x64/Debug and SFML dll files into the x64/Release folder.
  • You can find files in SFML download page.
  • Download the .zip file and you can find dlls in ./bin folder. Files that ends with -d.dll are debug dll files.
  • You must also copy openal.dll file into the folders.

Credits

Original Repository: johnBuffer / VerletSFML