public class Voorbeeld3 extends java.applet.Applet { int i; public void paint(Graphics g) { for (i=0; i<25; i=i+1) {g.drawLine(i*10,200, i*10,200-i*10);} } }
You see some lines are drawing - within 200 x 300 pixels. See the height and the width in the html-source-code.
Enschede, 2000; updated March, 2003.