xxxxxxxxxx
64
function setup() {
// Create drawing canvas
createCanvas(400, 400);
background(120);
face();
eyes(150, 150, 70, 40); //left
eyes(250, 150, 40, 60); // right
pupils();
eyebrows();
Antenna();
mouth();
arms();
body();
}
function face() {
fill(127, 0, 127);
ellipse(200, 200, 150, 200);
}
function eyes(x,y,w,h) {
fill(0, 200, 127);
ellipse(x,y,w,h);
}
function pupils() {
fill(0);
ellipse(170, 150, 5, 5);
ellipse(270, 150, 10, 10);
}
function eyebrows() {
stroke(255, 100, 100);
strokeWeight(15);
line(130, 110, 170, 120);
line(230, 105, 270, 100);
}
function Antenna() {
stroke(255);
strokeWeight(5);
line(200, 125, 200, 50);
// No fill
noFill();
ellipse(200, 40, 20, 20);
}
function mouth() {
noStroke();
fill(255, 0, 127);
ellipse(200, 250, 50, 20);
}
function arms() {
stroke(0);
strokeWeight(30);
line(150, 350, 300, 300);
}
function body() {
noStroke();
fill(255, 255, 0);
rect(150, 275, 100, 200);
}