OPEN GL
Intro:
libsdl2
sudo apt-get install libsdl2-dev
libglew
sudo apt-get install libglew-dev
OpenGL Mathematics (libglm)
OpenGL Mathematics (GLM) is a header only C++ mathematics library for graphics software based on the OpenGL Shading Language (GLSL) specifications.
- This library works perfectly with OpenGL but it also ensures interoperability with other third party libraries and SDK. It is a good candidate for software rendering (raytracing / rasterisation), image processing, physic simulations and any development context that requires a simple and convenient mathematics library.
capabilities: matrix transformations, quaternions, data packing, random numbers, noise, etc...
sudo apt-get install libglm-dev