10 lines
145 B
Plaintext
10 lines
145 B
Plaintext
void setup() {
|
|
size(400, 400);
|
|
}
|
|
|
|
void draw() {
|
|
background(230);
|
|
// circle follows the mouse exactly
|
|
ellipse(mouseX, mouseY, 30, 30);
|
|
}
|