xxxxxxxxxx
17
function setup() {
// キャンバスを用意する
createCanvas(windowWidth, windowHeight);
noStroke();
}
function draw() {
// 基準点を中心に
translate(width / 2, height / 2);
// 背景色
background(63, 63, 63);
// 塗りの色
fill(255, 127, 31);
// 円を描く
circle(0, 0, 250);
}