xxxxxxxxxx
15
function setup() {
createCanvas(400, 400);
// Arguments for rect 1
// e.g. rect(topRightX, topRightY, bottomLeftX, bottomLeftY);
rect(topLeftx,topLefty,bottomRightX,bottomRightY);
// Arguments for rect 2
rect(centerX, centerY, width, height);
// Come up with as many as you can think of!
rect(centerX, centerY, centerTopDistance, centerBottomDistance);
}