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