xxxxxxxxxx
27
let radius = 0
let angle = 0
const speed = 0.05
let centerX
let centerY
function setup() {
createCanvas(600, 600);
centerX = width / 2
centerY = height / 2
}
function draw() {
// background(220);
ellipse(width / 2, height / 2, 10, 10)
var x = centerX + radius * cos(angle)
var y = centerY + radius * sin(angle)
ellipse(x, y, 50, 50)
radius > 150 ? radius = 0 : radius++
angle = angle + speed
}