neu ordnen
This commit is contained in:
16
Lektion 1/Interaktion/Radiergummi/Radiergummi.pde
Normal file
16
Lektion 1/Interaktion/Radiergummi/Radiergummi.pde
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user