done renaming

This commit is contained in:
2023-09-25 18:56:08 +02:00
parent 5870c6ba9c
commit 9a3380dee1
33 changed files with 554 additions and 31 deletions

View File

@@ -0,0 +1,19 @@
void setup() {
size(500, 500);
}
void draw() {
textSize(20);
textAlign(LEFT, TOP);
fill(0);
text("OBEN LINKS", 0, 0);
textAlign(RIGHT, TOP);
fill(0);
text("OBEN RECHTS", width, 0);
textAlign(LEFT, BOTTOM);
fill(0);
text("UNTEN LINKS", 0, width);
textAlign(RIGHT, BOTTOM);
fill(0);
text("UNTEN RECHTS", width, width);
}