xxxxxxxxxx
64
function setup() {
createCanvas(400, 400);
}
function draw() {
background(120);
purpleface();
greeneyes(250,150,40,60);
greeneyes(150,150,70,40);
blackpupils(160, 150, 30, 30);
blackpupils(260, 150, 10, 10);
orangeeyebrows();
antenna();
pinkmouth();
blackarms();
yellowbody();
function purpleface() {
fill(127, 0, 127);
ellipse(200, 200, 150, 200);
}
function greeneyes(x,y,w,h) {
fill(0, 200, 127);
ellipse(x,y,w,h);
}
function blackpupils(x,y,w,h) {
fill(0);
ellipse(x,y,w,h)
}
function orangeeyebrows() {
stroke(255, 100, 100);
strokeWeight(15);
line(130, 130, 170, 120);
line(230, 90, 270, 100);
}
function antenna() {
stroke(255);
strokeWeight(5);
line(200, 125, 200, 50);
noFill();
ellipse(200, 40, 20, 20);
}
function pinkmouth() {
noStroke();
fill(255, 0, 127);
ellipse(200, 250, 20, 20);
}
function blackarms() {
stroke(5);
strokeWeight(1);
line(150, 350, 300, 300);
}
function yellowbody() {
fill(255, 255, 0);
rect(150, 275, 100, 200);
}
}