xxxxxxxxxx
54
// click to restart
// "s" to save .png
// window resize restarts also
let inc = 0.01;
let start = 0;
function setup() {
createCanvas(1000, 1000);
background(255);
noCursor();
}
function draw() {
noFill();
beginShape();
let xOff1 = start;
let yOff = start;
let xOff2 = 10000;
for (let x = 0; x < width; x++) {
let y = noise(xOff1, yOff) * height;
vertex(x, y);
xOff1 += inc;
}
endShape();
start += inc;
let stW = noise(xOff1);
strokeWeight(stW);
alf = stW*100;
stroke(20, alf);
// LP idea for WCMA
fill(20, 20, 20, 20);
ellipse(width/2, height/2, 200);
// noLoop();
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
background(20);
}
function keyTyped() {
if (key === "s") {
saveFrames("landscape noise", "jpg", 1, 1);
}
}
function mouseReleased() {
background(255);
}