xxxxxxxxxx
25
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
let shapeWidth = 25;
let xOffset = 100;
let numShapes = 5;
function draw() {
background(220, 10, 100);
for (let c = 0; c < numShapes; c += 1) {
let xPos = c * shapeWidth;
rect(xPos, 50, shapeWidth, shapeWidth);
}
for (let c = 0; c < numShapes; c += 1) {
let xPos = c * shapeWidth + xOffset;
rect(xPos, 100, shapeWidth, shapeWidth);
}
}