xxxxxxxxxx
22
/*
Add your group member names here.
When finished, copy the link to your sketch to the post on Google Classroom!
*/
function setup() {
createCanvas(400, 400);
background(255);
}
var rWidth = 20;
function draw() {
fill(0)
noStroke();
for (var x = 0; x < 250; x+=20) {
if (rWidth > 0) {
rWidth--;
}
rect(x, 0, rWidth, 20);
}
}