xxxxxxxxxx
33
let xoff = 0;
let start = 1000;
let inc = 0.01;
function setup() {
createCanvas(400, 400);
background(220);
}
function draw() {
background(220);
noFill();
stroke(100);
beginShape();
xoff = start;
for(let x=0; x<width; x++){
let y = noise(xoff)*height;
vertex(x,y);
xoff+=inc;
// yoff += 0.002;
}
endShape();
start+=inc;
// noLoop();
// endShape();
}
function mouseClicked(){
saveFrames("outout", "png", 1, 25);
}