適当に黒い縦長の円を描く function setup() { createCanvas(600, 350); } function draw() { background(255, 222, 205); push(); translate(width/2, height/2); noStroke(); fill(0); ellipse(0, 0, 190, 220); pop(); } 適当に白い円を重ねる function setup() { createCanvas(600, 350); } function draw() { background(255, 222, 205); push(); translate(width/2, height/2); noStroke(); fill(0); ellipse(0, 0, 190, 220); fill(255); ellipse(