xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
stroke(255);
noFill();
beginShape();
for (x=0; x<width;x++){
//strokeWeight(2);
stroke(255);
vertex(x, random(height));
}
endShape();
//noLoop();
}