FileDocCategorySizeDatePackage
DrawCrowd.javaAPI DocExample1343Wed Jan 09 13:47:28 GMT 2002None

DrawCrowd

public class DrawCrowd extends Applet

Fields Summary
Man
M1
Man
M2
Man
M3
int
row
int
col
Constructors Summary
Methods Summary
public voidinit()

		M1=new Man();
	
public voidpaint(java.awt.Graphics g)

		for (col=0; col< 500; col+=50)
			for (row=0; row <400; row+=100)
			{
			M1.drawMan(col,row); // at the moment we simply supply
			//M1.drawMan(150,150); // parameters for position, but could 
			//M1.drawMan(220,75);  // adapt to include size & colour
			}