Introductory Session CG
Introductory Session CG
Graphics and
Gaming
Madhavi Dachawar
Assistant Professor
Department of Computer
Engineering
2 Computer Graphics
Computer Graphics
3 Course Description
Computer Graphics
4 Course Outcomes
Computer Graphics
5
Computer Graphics
Computer
Graphics-
Lab
Madhavi Dachawar
Assistant Professor
Department of Computer
Engineering
4 Computer Graphics Lab
Computer Graphics
8 List of Assignment
1
Implementation of Line drawing algorithms
2
Implementation
– of Circle drawing algorithms
3
Implementation of Polygon Filling algorithms
4
Implementation of various 2D Transformations
5
Implementation of a Line Clipping algorithms
6
Implementation of a Polygon Clipping algorithms
7
Implementation of basic 3D Transformations
8
Study of various graphical file formats
9
Implementation of Curves and Fractals
10
Assignment of Animation
11
Mini Project
All the lab assignments has to be implemented using C/C++/
Computer Graphics JAVA /Open GL
9 Sample program
#include <stdio.h>
#include<graphics.h>
Void main()
{
Int gd=DETECT,gm;
Initgraph(&gd,&gm,”c:/tc/bgi”);
Line(200.200,100,100);
Closegraph();
Restorecrtmode();
}
Computer Graphics
10
Thank You……
Computer Graphics