done renaming
This commit is contained in:
19
Lektion 1/Text-Ausgabe/Ecken/Ecken.pde
Normal file
19
Lektion 1/Text-Ausgabe/Ecken/Ecken.pde
Normal 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);
|
||||
}
|
||||
11
Lektion 1/Text-Ausgabe/TextMauszeiger/TextMauszeiger.pde
Normal file
11
Lektion 1/Text-Ausgabe/TextMauszeiger/TextMauszeiger.pde
Normal file
@@ -0,0 +1,11 @@
|
||||
void setup() {
|
||||
size(600, 600);
|
||||
}
|
||||
|
||||
void draw() {
|
||||
background(200);
|
||||
textSize(20);
|
||||
textAlign(CENTER);
|
||||
fill(0);
|
||||
text("maus", mouseX, mouseY);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
size(300, 300);
|
||||
|
||||
textSize(100);
|
||||
textAlign(CENTER);
|
||||
fill(0, 100);
|
||||
text("Julia", 153, 153);
|
||||
fill(255);
|
||||
text("Julia", 150, 150);
|
||||
Reference in New Issue
Block a user