xxxxxxxxxx
16
function setup() {
initializeFields();
createCanvas(900, 700);
frameRate(24);
background(255);
}
function draw() {
stroke(random(50,106), random(50,169), 166);
strokeWeight(2);
line(20, height / 2, width / 2, random(height));
line(width / 2, random(height), width - 20, height / 2);
}
function initializeFields() {
}