This application represents simple 2D physics engine that simulate world with solid dynamic and static objects that can move and rotate.
Requirements
- VcPkg
- VisualStudio 2022
To build, open visual studio solution and build by UI.
Engine uses Vulkan as graphics api. As window manager used glfw. Most of the graphics code written by following this tutorial.
Libraries used:
Engine implements simple 2D collision detection and resolusion. Used GJK and EPA algorithms to detect collisions.
Most of the physics part developed by this youtube series about 2D physics Engine.
GJK and EPA algorithm mostly driven from this article about Collision detection algorithm in 2D/3D and this series of articles about developing Game Physics engine.
Libraries used: