neu ordnen

This commit is contained in:
2023-09-25 17:53:38 +02:00
parent 0a6571ccba
commit 5870c6ba9c
22 changed files with 135 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
size(200, 200);
background(255);
// Viereck in der mitte
fill(0);
quad(50,50,
150,50,
150,150,
50,150);
}
void draw() {
// Radiergummi
fill(255);
noStroke();
ellipse(mouseX, mouseY, 15, 15);
strokeWeight(1);
}