xxxxxxxxxx
18
//on a white background: create black lines from somewhere on the left border of the display
// window to somewhere on the right border.
function setup() {
initializeFields();
createCanvas(900, 700);
background(255);
frameRate(10);
}
function draw() {
stroke(random(250), 100, 100);
strokeWeight(random(1, 5));
var yPosition = random(height);
line(0, yPosition, width, yPosition);
}
function initializeFields() {
}