import java.awt.*; public class Start extends BlackFiguur { public void paint( Graphics g ) { int[ ] x = {SIZE / 2 - 2, SIZE / 2 - 2, SIZE / 2 - 8, SIZE / 2, SIZE / 2 + 8, SIZE / 2 + 2, SIZE / 2 + 2}; int[ ] y = {0, SIZE / 2, SIZE / 2, SIZE - 1, SIZE / 2, SIZE / 2, 0}; g.setColor( Pad.PADKLEUR ); g.fillPolygon( x, y, 7 ); } }
Make your own free website on Tripod.com