Files
sunny9898/task8/wk7/wk7_example1a/wk7_example1a.pde
louiscklaw 5637fbf94f update,
2025-02-01 02:07:58 +08:00

10 lines
145 B
Plaintext

void setup() {
size(400, 400);
}
void draw() {
background(230);
// circle follows the mouse exactly
ellipse(mouseX, mouseY, 30, 30);
}