
import java.awt.*;import java.applet.*; public class Schweizerkreuz extends Applet {int x= 100, y= 50;int s = 150;int xRand=40, yRand=15;public void paint(Graphics g) {// Umriss zeichnen (Quadrat)//g.drawRect(x,y,s,s);g.setColor(Color.red); g.fillRect(x-xRand,y-yRand,s+2*xRand,s+2*yRand); //weisses Kreuz zeichneng.setColor(Color.white); g.fillRect(x+s/3,y,s/3,s/3); g.fillRect(x,y+s/3,s,s/3); g.fillRect(x+s/3,y+s*2/3,s/3,s/3); //g.fillRect(x,y+s*2/3,s/3,s/3);//g.fillRect(x+s*2/3,y,s/3,s/3);//g.fillRect(x+s*2/3,y+s*2/3,s/3,s/3);} } |