xxxxxxxxxx
14
let xoff = 0.0;
function setup() {
createCanvas(windowWidth, windowHeight);
noiseSeed(99);
stroke(0, 10);
background(255);
}
function draw() {
xoff = xoff + .01;
let n = noise(xoff) * width;
line(mouseX, mouseY, n, height);
}