Computer Science, asked by supriyagawade2902, 5 hours ago

write a program to implement an applet to draw basic annimated shapes​

Answers

Answered by sujitkundu2709
1

Answer:

Example of animation in applet:

import java. awt. *;

import java. applet. *;

public class AnimationExample extends Applet {

Image picture;

public void init() {

picture =getImage(getDocumentBase(),"bike_1. gif");

}

public void paint(Graphics g) {

Similar questions