xxxxxxxxxx
16
/*
this sketch draws a group of horizontal lines to the canvas.
add a conditional that makes every other line red.
*/
function setup(){
createCanvas(600,600);
strokeWeight(10);
background(255);
}
function draw(){
for (let i = 0; i <= 10; i ++) {
line(0, 59 * i + 5, width, 59 * i + 5);
}
}