2021BCS0137 Cse-411 Lab-9
2021BCS0137 Cse-411 Lab-9
2021BCS0137 Cse-411 Lab-9
CSE-411
COMPUTER GRAPHICS
LAB EXERCISE-9
2|Page
glVertex2f(x, y);
}
glEnd();
}
// Draw Sun
glColor3f(1.0f, 1.0f, 0.0f);
drawCircle(0.0f, 0.0f, 0.07f, 100);
glutSwapBuffers();
}
3|Page
gluOrtho2D(-1.0, 1.0, -1.0, 1.0);
glMatrixMode(GL_MODELVIEW);
}
init();
glutDisplayFunc(display);
glutTimerFunc(0, timer, 0);
glutMainLoop();
return 0;
}
Output:
4|Page
5|Page
6|Page