xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
// Arguments for rect 1
// e.g. rect(topRightX, topRightY, bottomLeftX, bottomLeftY);
//define the diagonal corners of x and y, and the vertical line distance and horizontal distance
rect(cornerX,cornerY,vertical distance from x to y, horizontal distance from x to y);
// Arguments for rect 2
//define the center position by x and y, and provide the width and height of the rectangle
rect(centerX, CenterY, Width, Height);
// Come up with as many as you can think of!
rect();
rect();
rect();
rect();
rect();
rect();
}