Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 866 Bytes

README.md

File metadata and controls

27 lines (15 loc) · 866 Bytes

Graphics

Just a little program to experiment with computer graphics using OpenGL, GLFW, and Glad.

Compilation

To compile in Unix-like systems you can use the included makefile:

The program needs GLFW, Glad and cglm.

Clone the submodules if you haven't

$ git clone --recurse-submodules https://github.com/fmaggi/Graphics.git
$ make setup

This will build the directories and libraries

To compile the executable
$ make

Extra info

A lot of the code here was inspired by Yan Chernikov's explanations and examples at his youtube channel The Cherno and his game engine Hazel. I am currently trying to write my own physics engine, mainly as a challenge to my self. I am using Box2D by erincatto as my reference.

The code is very well written and very understandable.