SketchBook

楽しい

function setup(){
createCanvas(600,600);
background(255,192,203);
strokeWeight(3);

}
function draw(){
noStroke();
fill(224,255,255);
ellipse(150,80,120);
noStroke();
fill(240,255,240);
rect(220,150,100,100);
noStroke();
fill(255,240,245);
triangle(430,220,300,350,430,350);
noStroke();
fill(224,255,255);
ellipse(500,430,120);

}