https://github.com/anshul-004/sppu-se-2019-cg-oopl
SPPU Second Year Computer Engineering CG and OOPL Practicals
https://github.com/anshul-004/sppu-se-2019-cg-oopl
2019-pattern cg cgl comp computer-engineering computer-graphics-lab object-oriented-programming oopl se second-year-engineering sppu
Last synced: about 2 months ago
JSON representation
SPPU Second Year Computer Engineering CG and OOPL Practicals
- Host: GitHub
- URL: https://github.com/anshul-004/sppu-se-2019-cg-oopl
- Owner: Anshul-004
- Created: 2023-12-12T10:47:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-14T16:54:34.000Z (over 1 year ago)
- Last Synced: 2024-04-20T12:26:31.961Z (about 1 year ago)
- Topics: 2019-pattern, cg, cgl, comp, computer-engineering, computer-graphics-lab, object-oriented-programming, oopl, se, second-year-engineering, sppu
- Language: C++
- Homepage:
- Size: 453 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
**To run NORMAL C++ Code (OOP) :**
1) g++ filename.cpp
2) ./a.out**To run normal GRAPHICS Code :**
1) g++ filename.cpp -lgraph
2) ./a.out**To run OPENGL Code :**
1) g++ filename.cpp -lGL -lGLU -lglut
2) ./a.out*NOTE : if g++ is NOT working, try replacing with gcc.*
*NOTE : -o flag followed by outputfilename.out can be used after compiling command for diffrent output file, but will change the output file name required while running also.*