import java.applet.Applet; import java.awt.Graphics; import java.awt.Color; import java.awt.Font; public class fractal_vladimir extends Applet { /** * Initializes the applet. You never need to call this directly; it is * called automatically by the system once the applet is created. */ public void paint (Graphics g) { int x=0; int y=100; int x1=0; int y1=100; int r=0; int v=0; int a=0; g.drawLine (x, y, x1, y1); } /** * Called to start the applet. You never need to call this directly; it * is called when the applet's document is visited. */ public void start() { } /** * Called to stop the applet. This is called when the applet's document is * no longer on the screen. It is guarenteed to be called before destroy() * is called. You never need to call this method directly */ public void stop() { } /** * Cleans up whatever resources are being held. If the applet is active * it is stopped. */ public void destroy() { } }