xxxxxxxxxx
f = 0
setup=_=> createCanvas(c = 600, c)
draw=_=> {
r = random
m = 1 / 3e3
background(c, 5)
for (i = c; i--;) {
x = r(c)
y = r(c)
push()
translate(x, y)
rotate(noise((x + f) * m, (y + f + c) * m) * 45)
line(-20, 0, 20, 0)
pop()
}
f+=3
}
mousePressed=_=> f+=c