xxxxxxxxxx
33
// ⭐️ 1️⃣ INITIAL TODO: Write code to make 3+ concentric circles or squares. Then code along to use variables to control position, size, and color!
// ⭐️ TODO: Declare your variables here
function setup() {
createCanvas(400, 400);
// ⭐️ TODO: Initialize your variables here
}
function draw() {
background(220, 220, 220);
// ⭐️ 1️⃣ TODO: Write code below: create circles (or squares)
// that are different colors but have the same center point
// circles:
// ellipse(x, y, width, height);
// squares:
// rectMode(CENTER);
// rect(x, y, width, height, curve);
// helper grid
// drawGrid();
}