Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 10

A REPORT ON

“Flying Ballon”

SUBMITTED TO THE SHIVAJI

POLYTECHNIC, ATPADI

IN THE PARTIAL FULFILLMENT OF THE REQUIREMENTS OF

DIPLOMA IN Computer Engineering

SUBMITTED BY

Name : Ayush Vijay More Exam seat No:-

: Onkar Vilas Jadhav Exam Seat No:-

: Shivam Santosh Bansode Exam Seat No:-

UNDER THE GUIDANCE OF

Prof:-Mr.Landage P.S

DEPARTMENT OF Computer Engineering


SHIVAJIPOLYTECHNIC, ATPADI

(2023-2024)
SjHIVAJI POLYTECHNIC, ATPADI

CERTIFICATE

This is to certify that Mr. Ayush Vijay More Of class SY( Computer
Technology )as perthe curriculum laid down by the Maharashtra State Board of
Technical Education, Mumbai have successfully completed Micro project entitled
under our guidance insatisfactory manner as a part of academic syllabus during
the academic year 2023-2024.

Date :

Place : Atpadi

Prof:-Mr.Landage P.S Prof:-Miss.Belsare .A.T

(Guide) (HOD)

Prof .Mr.Kulkarni O.G


(Principal)
Acknowledgments

It is matter of great pleasure for me to submit this micro project report on " Flying Ballon" as a
part of curriculum for award of Diploma in Computer Engineering Maharashtra State Board Of
Technical Education, Mumbai Firstly, I would like to express my gratitude to my guide Prof.Mr
Landage P.S or hir inspiration, adroit guidance, constant supervision, direction and discussion
in successful completion of this Micro project.

I am thankful to Head of Department Prof. Miss.Belsare .A.T for guiding andhelping me right
from the beginning,

I am thankful to my Principal Prof. Mr. Mr.Kulkarni O.G and to all our staffmembers who
encouraged me to do this micro project.

Also I extend my thanks to all my colleagues those who have helped me directly or indirectly in
completion of this micro project and last but not least,I am thankful to my parents, who had
inspired me with their blessings.

Name :- Mr. Ayush Vijay More

Enrollment no:- 2212090007


INDEX

SR.NO TITLE

1 Abstract

2 Working Of Unguided Transmission Media

3 Advantages

4 Unguided Media in the Microwave

5 Disadvantages

6 Features Of Unguided Media

7 Guided Media VS Unguided Media

8 Unguided Transmission Media Security


Abstract :

A wireless medium that doesn't have any physical path in between is also meant to be an unguided
transmission media, where the transmission doesn't need to be guided. This can also be called wireless
transmission media. Generally, the waves get guided while transmission but that is not acceptable in this
so there are several techniques or procedures to follow for transmitting them. The dispersal of waves can
be attainable through the vacuum or by the air and seawater.
Working of Unguided Transmission Media :

The transmission is done between the destination and source. For making possible transmissions to
unguided media, the electromagnetic spectrum is utilized.

Types of
Transmission
Media

Unguided
Guided Media
Media

Twisted Table Optical Fibre


Coaxial Cable Radiowaves Microwaves Infrared
Cable Cable
Source Code:-

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <math.h>

int main(void) {
int gd = DETECT, gm;
int x, y, i;
int threadX, threadY; // Position of the thread

initgraph(&gd, &gm, "C:\\TURBOC3\\BGI");

if (graphresult() != grOk) {
printf("Graphics error: %s\n", grapherrormsg(graphresult()));
return 1;
}

for (i = 0; i < 150; i++) {


setactivepage(0);
cleardevice();

// Draw the balloon string


setcolor(RED);
line(250, 250, x, y);

// Draw the modern-style balloon


setcolor(YELLOW);
setfillstyle(SOLID_FILL, YELLOW);
fillellipse(x, y - 25, 25, 25); // Balloon body
floodfill(x, y - 25, YELLOW);

// Shading effect
setcolor(YELLOW);
line(x, y - 25, x - 15, y - 15);
line(x, y - 25, x + 15, y - 15);

// Update thread's position (moving with the flow of air)


threadX = x;
threadY = y;

// Draw the moving red thread


setcolor(RED);
line(x, y - 25, threadX, threadY);

// Update balloon's position


x = 250 - 50 * cos(i * 3.14 / 180);
y = 250 - 70 * sin(i * 3.14 / 180);

setvisualpage(0);
delay(50);
}

getch();
closegraph();
return 0;
}
Output
Conclusion

As a digital artist or animator, your power lies in your ability to craft immersive and engaging
experiences. Flying balloons serve as both symbolic vessels and visual storytellers, carrying
with them the potential to evoke emotions, spark curiosity, and ignite the imagination of your
audience. It's a world where realism and fantasy can coexist, where the ordinary becomes
extraordinary, and where you, as the creator, have the privilege of guiding this creative
journey.

Remember that, like any creative endeavor, practice and persistence are key to honing your
skills in this exciting field. Keep pushing the boundaries of your abilities, seek inspiration
from the real world and other artists, and always be open to learning and improvement. Your
work in computer graphics for flying balloons has the potential to leave a lasting impact,
whether in the world of entertainment, education, or art, and it's a journey worth embarking
on with enthusiasm and passion.
Refrence

 https://improvado.io/blog/top-25-best-computer-graphics-software

 https://www.g2.com/categories/computer-graphics

You might also like