https://github.com/hmasum52/cse-102-offline
https://github.com/hmasum52/cse-102-offline
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hmasum52/cse-102-offline
- Owner: hmasum52
- Created: 2023-02-02T17:05:59.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T17:06:42.000Z (over 2 years ago)
- Last Synced: 2024-12-31T19:42:13.829Z (5 months ago)
- Language: C
- Size: 1.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IGraphics
This is the repository for IGraphics library. IGraphics is a thin wrapper on top of OpenGL. This can be used for simple 2D graphics demonstrations, project work for C programming language courseCommand line compiling:
-----------------------
g++ -IOpenGL\include -w -c 1805052.cpp -o 1805052.oCommand line linking:
---------------------
g++ -LOpenGL\lib 1805052.o -o bin\Debug\1805052.exe -lGlaux -lGLU32 -lglui32 -lglut32 -lOPENGL32 -lgdi32Command line running:
---------------------
Make sure glut32.dll is present in the same folder
Run 1805052.exeAnimation Related API:
----------------------
```
int iSetTimer(int msec, void (*f)(void))
void iPauseTimer(int index)
void iResumeTimer(int index)
```Shape drawing:
--------------
```
void iSetColor(double r, double g, double b)
void iPoint(double x, double y, int size=0)
void iLine(double x1, double y1, double x2, double y2)
void iFilledPolygon(double x[], double y[], int n)
void iPolygon(double x[], double y[], int n)
void iRectangle(double left, double bottom, double dx, double dy)
void iFilledRectangle(double left, double bottom, double dx, double dy)
void iFilledCircle(double x, double y, double r, int slices=100)
void iCircle(double x, double y, double r, int slices=100)
void iEllipse(double x, double y, double a, double b, int slices=100)
void iFilledEllipse(double x, double y, double a, double b, int slices=100)
```Text output:
------------
```
void iText(double x, double y, char *str, void* font=GLUT_BITMAP_8_BY_13)
```Rendering:
----------
```
void iDraw();
void iClear();
void iShowBMP(int x, int y, char filename[])
```Initialization:
---------------
```
void iInitialize(int width=500, int height=500, char *title="iGraphics")
```I/O event handling:
-------------------
```
void iKeyboard(unsigned char);
void iSpecialKeyboard(unsigned char);
void iMouseMove(int, int);
void iMouse(int button, int state, int x, int y);
```