All things in this project are very important for a graphics course. If you are doing a graphics course, then these things are very essential for you.
👍 Below process only works for Linux Machine:
Open a Terminal : Ctrl+Alt+t
Run the following commands to install OpenGL :
$ sudo apt-get update
$ sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev
Compile :
$ g++ filename.cpp -o firstOpenGlApp -lglut -lGLU -lGL
Run :
$ ./firstOpenGlApp