iMain is the main code for the project , rest files are need to be included in same folder to run the iMain correctly
"Mission Antarctica Impossible" is a fun and challenging mini-game set in the icy landscapes of Antarctica. Developed as part of our Level-1, Term-1 coursework at BUET, this project was a collaborative effort with a fellow student.
Development Time: 4 weeks Collaboration: Team project Technologies Used: C language, iGraphics
Exciting Gameplay: Navigate through icy terrains and overcome obstacles to complete missions. Visual Appeal: Created stunning graphics and animations using iGraphics. Challenging Levels: Enjoy an engaging storyline with progressively harder levels.
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 course
g++ -IOpenGL\include -w -c BallDemo.cpp -o BallDemo.o
g++ -LOpenGL\lib BallDemo.o -o BallDemo.exe -lGlaux -lGLU32 -lglui32 -lglut32 -lOPENGL32 -lgdi32
Make sure glut32.dll is present in the same folder Run BallDemo.exe
int iSetTimer(int msec, void (*f)(void)) void iPauseTimer(int index) void iResumeTimer(int index)
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)
void iText(double x, double y, char str, void font=GLUT_BITMAP_8_BY_13)
void iDraw(); void iClear(); void iShowBMP(int x, int y, char filename[])
void iInitialize(int width=500, int height=500, char *title="iGraphics")
void iKeyboard(unsigned char); void iSpecialKeyboard(unsigned char); void iMouseMove(int, int); void iMouse(int button, int state, int x, int y);