図形課題
function setup() {
createCanvas(300, 300);
}
function draw() {
background(250, 250, 250);
ellipse(140, 155, 100);
point(120, 150);
point(160, 150);
point(100,130);
point(180,130);
point(140,200);
triangle(100,130,180,130,140,200);
point(140,130);
point(140,200);
line(140,130,140,200);
}