write a program to implement an applet to draw basic annimated shapes
Answers
Answered by
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