У нас вы можете посмотреть бесплатно C++ Gravity Simulation using SDL2 and SDL2 gfx (Source code in description) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
I have a newer version of the program viewable here: • C++ Gravity Simulation (Version 2) using S... Source code and other links can be found in the description of the video above. Based on this tutorial by The Coding Train: • Coding Challenge #56: Attraction and Repul... My IDE is Visual Studio 2015. SDL2 can be found here: https://www.libsdl.org/download-2.0.php SDL2 gfx is a graphics library that can be paired with SDL to easily draw graphics primitives on screen (triangles, circles, etc). I had trouble myself finding a version of SDL2 gfx that worked with Visual studio, I had to find the source of some SDL2 gfx version that was compatible with Visual studio 2015, and that was a big pain. So I will add a download link to the SDL2 gfx version that I used while making this: https://drive.google.com/drive/folder... To use this, you have to go into project settings in VS2015 and go find VC++ directories, in there you have to add the folders "include" and "lib" as include and library folders. Also don't forget to add SDL2_gfx.lib as an additional dependency in Linker - input in settings. The same goes for SDL2 if you don't have that either.