xxxxxxxxxx
27
const r = 20
// const dis = 100
// let dis = 0
let angle = 0
function setup() {
createCanvas(400, 400);
}
function draw() {
// background(220);
circle(width / 2, height / 2, r * 2)
for (let i = 0; i++ < 360;) {
let dis = random(40, 150)
const y = dis * sin(i)
const x = dis * cos(i)
ellipse(width / 2 + x, height / 2 + y, 10)
// angle += 0.05
}
}