xxxxxxxxxx
19
function setup() {
createCanvas(600, 600);
}
function draw() {
background(255, 225, 255);
noStroke();
fill(255, 255, 100);
ellipse(300, 300, 400, 400);
eye();
}
function eye() {
strokeWeight(1);
fill(255);
ellipse(400, 280, 60, 60);
fill(0, 0, 0);
ellipse(400, 285, 40, 40);
}