An open API service indexing awesome lists of open source software.

https://github.com/bijoy-sust/opengl

All things in this repository are very important for a graphics course. If you are doing a graphics course, then these things are very essential for you.
https://github.com/bijoy-sust/opengl

2d-transformation circle-drawing clipping-algorithm glut graphics-course installation-guides line-drawing opengl region-filling-algo

Last synced: 7 months ago
JSON representation

All things in this repository are very important for a graphics course. If you are doing a graphics course, then these things are very essential for you.

Awesome Lists containing this project

README

          

# OpenGL

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.

## Glut Installation:
:+1: 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 and Run :

`Compile :`
```
$ g++ filename.cpp -o firstOpenGlApp -lglut -lGLU -lGL
```
`Run :`
```
$ ./firstOpenGlApp
```