//michael schmitz 2003 size(300,300); background(55,55,55); //rechteck rectMode(CENTER_DIAMETER); stroke(255,255,255); fill(0,102,255); rect(125,150, 50,50); //ellipse ellipseMode(CENTER_DIAMETER); noStroke(); fill(255,255,255); ellipse(125,150, 50,50); ellipse(175,150, 50,50); //lines stroke(255,255,255); line(100,120, 200,120); line(100,122, 200,122); line(100,178, 200,178); line(100,180, 200,180);