A simulation project using OpenGL (GLUT) and C++.
- Install a C++ Compiler like GNU GCC Compiler
sudo apt-get install build-essential
. (Recommended) - Install the freeglut package
sudo apt-get install freeglut3 freeglut3-dev
. - Compile the project
gcc main.cpp -lGLU -lGL -lglut -lstdc++ -lm -o <output.out>
. - Run the project
./<output.out>
.
Note: This project was developed with WSL. Please use WSL or a linux system to compile/run the project.