FileDocCategorySizeDatePackage
Fractal2.javaAPI DocExample1836Thu Feb 04 16:10:38 GMT 1999None

Fractal

public class Fractal extends Applet implements Runnable

Fields Summary
Thread
t
Constructors Summary
Methods Summary
public voidpaint(java.awt.Graphics g)

		// Paint the completed sections of the fractal
	
public voidrun()

		// Do calculations, occassionally calling repaint()
	
public voidstart()

		if (t == null) {
			t = new Thread(this);
			t.setPriority(Thread.currentThread().getPriority() - 1);
			t.start();
		}
		else t.resume();
	
public voidstop()

		t.suspend();