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

18 lines
216 B
Plaintext

float x1, y1, x2, y2;
void setup() {
size(500, 500);
x1 = width/2;
y1 = height/2;
}
void draw() {
x2 = x1 + random(-5, 5);
y2 = y1 + random(-5, 5);
line(x1, y1, x2, y2);
x1 = x2;
y1 = y2;
}