xxxxxxxxxx
14
function setup() {
createCanvas(windowWidth, windowHeight);
noStroke();
}
function draw() {
background(0);
translate(width / 2, height / 2);
fill(255, 127, 31);
// 円が収縮
let r = sin(frameCount / 100);
circle(0, 0, 600 * r);
}