Project Report: Evelop A Small Animation Using Applet Graphics and Multithreading
Project Report: Evelop A Small Animation Using Applet Graphics and Multithreading
On
“DEVELOP A SMALL ANIMATION USING APPLET. GRAPHICS AND
MULTITHREADING”
SUBMITTED BY-
Kunal Kunjam Achal Sharnagat
Tushar Kawale Ruchi Sakhare
Khusi Raut Gyarshilal Patle
Shubham Ukey Niraj Patle
Under The Guidance Of
Mr. Rahul Meshram
Lecture Information Technology Department
2021-22
Guide By H.O.D
Mr. Rahul Meshram Dr.N.B.Nibudhye
Principal
Dr.C.D.Golghate
ACKNOWLEDGEMENT
4 Literature Review
1.0 - RATIONALE
The multithreading and applets is aim to implement in project. We
create a small animation of circle using the graphics and
multithreading using applets.
CERTIFICATE
This is certify that the Micro Project Titled
~ DEVELOP A SMALL ANIMATION USING APPLET. GRAPHICS AND
MULTITHREADING ~
Code Of Project
Import java.awt.”;
Import java.applet.*;
//<applet code=”AppletBasics” width=400 height=400> </applet>
Public class AppletBasics extends AApplet
{
Int X1=70,y1=70;
Public void paint(Graphics g)
{
g.setColor(Color.red);
//fillRect(int x, int y, int width, int height);
g.fillRect(0,0,this.getwidth(), this.getHeight());
g.setColor(Color.red);
//Filloval(int x, int y, int width, int height);
g.filloval (70,70,20,
20); for (int i=0;i<20;
i++)
{
x1++;
y1++;
repaint();
try
{
Thread.sleep(100);
{
}
}
}. };