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.
- Host: GitHub
- URL: https://github.com/bijoy-sust/opengl
- Owner: BIJOY-SUST
- Created: 2019-08-02T10:54:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T04:55:58.000Z (about 4 years ago)
- Last Synced: 2025-01-25T11:26:28.789Z (9 months ago)
- Topics: 2d-transformation, circle-drawing, clipping-algorithm, glut, graphics-course, installation-guides, line-drawing, opengl, region-filling-algo
- Language: C++
- Homepage:
- Size: 16.8 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```