mirror of
https://github.com/processing/processing4.git
synced 2026-01-29 19:31:16 +01:00
15 lines
188 B
Plaintext
15 lines
188 B
Plaintext
void setup() {
|
|
size(400, 400, P3D);
|
|
noLoop();
|
|
}
|
|
|
|
void draw() {
|
|
background(255, 0, 0);
|
|
ellipse(mouseX, mouseY, 100, 50);
|
|
println("draw");
|
|
}
|
|
|
|
void keyPressed() {
|
|
redraw();
|
|
}
|