mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
11 lines
142 B
Plaintext
11 lines
142 B
Plaintext
void setup() {
|
|
size(400, 400, P2D);
|
|
background(255, 0, 0);
|
|
fill(255, 150);
|
|
}
|
|
|
|
void draw() {
|
|
ellipse(mouseX, mouseY, 100, 100);
|
|
}
|
|
|