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

15 lines
180 B
Plaintext

float num = 0;
void setup(){
size(400, 400);
}
void draw(){
background(230);
float x = noise(num) * width;
line(x, 0, x, height);
num = num + 0.01;
// num += 0.1;
}