Skip to content

Latest commit

 

History

History
34 lines (17 loc) · 1.03 KB

README.md

File metadata and controls

34 lines (17 loc) · 1.03 KB

GJK

Gilbert–Johnson–Keerthi distance algorithm is a method for determining whether two convex shapes intersect between each other, through usage of Minkowski's difference and 'support functions'.

This repository holds a rudimentary OpenGL renderer, as well as a simple implementation of the algorithm.

Dependancies

The project requires following dependancies:

  • freeglut3
  • glm
  • glew
  • glad
  • glfw

Installation

Warning: The project has been developed on Windows, without planned support for After installing the appropriate dependancies, modification to the makefile is necessary:

g++ $(OBJS) -IC:\mingw_dev_lib\glfw\include - Replace the path to your installation path of glfw, as well as other dependancies reference in the makefile.

Compiling

Run make inside the project folder