xxxxxxxxxx
31
let shapes = [
{x:100, y:100, color:'red'},
{x:200, y:100, color:'orange'},
{x:150, y:150, color:'green'},
{x:250, y:150, color:'skyblue'},
]
function setup() {
createCanvas(400, 400);
noStroke()
let size = 40
let shape
shape = shapes[0]
fill(shape.color)
circle(shape.x, shape.y, size)
shape = shapes[1]
fill(shape.color)
circle(shape.x, shape.y, size)
shape = shapes[2]
fill(shape.color)
circle(shape.x, shape.y, size)
shape = shapes[3]
fill(shape.color)
circle(shape.x, shape.y, size)
}