Vivek Singh One and Only Hero Microproject.
Vivek Singh One and Only Hero Microproject.
A MICROPROJECT
Report on
“COMPUTER GRAPHICS”
Submitted in partial fulfillment by M.S.B.T.E. norms
For the Academic Year 2024-25
For award in Diploma in
Computer Engineering
SUBMITTED BY:
1. Ganesh chavhan
2. Harsha patil
3. Vivek singh
4. Sarthak bhoir
Under The Guidance Of
Mrs.Anuja Suryavanshi
CGR(313001)
1
INDEX
2
Annexure – I A
Micro Project
PART A - Plan
2. Setup Graphics:
Add a center line, center circle, goalposts, and penalty boxes with
simple shapes (lines, rectangles, and circles).
4. Enhance Visuals:
3
3.0 Aim of the Micro-Project: Write a C program code for flying a bird using
computer graphics.
1.0Resources Required:
4
1 Computer System 4-8 GB RAM, i3 1 Available
Processor, 256 GB
HDD
2 Operating System Windows 10 1 Available
3 Microsoft Office MS Word 1 Available
4 Internet Google Chrome, - Available
Mozilla Firefox
5 Turbo C++ OK 1 Available
**************
5
Annexure – II A
PART B
3.0Aim of Micro Project: Write a C program code for drawing a football ground
using computer graphics.
6
6.0 Actual Resources Used
Sr. Name of Specifications Qty Remarks
No. Resource/material
1 Computer System 4-8 GB RAM, i3 1 Available
Processor, 256 GB
HDD
2 Operating System Windows 10 1 Available
3 Microsoft Office MS Word 1 Available
4 Internet Google Chrome, - Available
Mozilla Firefox
5 Turbo C++ OK 1 Available
// Driver Code
Void main()
{
Int gd = DETECT, gm;
// Ground Outline
Rectangle(100, 50, 1200, 550);
// Coloring Green
Setfillstyle(SOLID_FILL, GREEN);
Floodfill(150, 150, 15);
// Coloring White
7
Setfillstyle(SOLID_FILL, WHITE);
Floodfill(652, 150, 15);
// Mid Circles
Circle(653, 300, 60);
Circle(653, 300, 65);
Circle(653, 300, 10);
8
Floodfill(197, 300, 15);
Floodfill(287, 300, 15);
Floodfill(1053, 300, 15);
Floodfill(1103, 300, 15);
Floodfill(1013, 300, 15);
9
Develops the ability to break down complex tasks (like creating a flying
bird animation) into manageable parts, debugging, and optimizing code
for better performance.
THANK YOU!!
10