xxxxxxxxxx
64
function setup() {
// Create drawing canvas
createCanvas(400, 400);
background(120);
drawface();
draweyes();
drawpupils();
draweyebrows();
drawAntenna();
drawmouth();
drawarms();
drawbody();
}
function drawface() {
fill(127, 0, 127);
ellipse(200, 200, 150, 200);
}
function draweyes() {
fill(0, 200, 127);
ellipse(150, 150, 70, 40);
ellipse(250, 150, 40, 60);
}
function drawpupils() {
fill(0);
ellipse(170, 150, 5, 5);
ellipse(270, 150, 10, 10);
}
function draweyebrows() {
stroke(255, 100, 100);
strokeWeight(15);
line(130, 110, 170, 120);
line(230, 105, 270, 100);
}
function drawAntenna() {
stroke(255);
strokeWeight(5);
line(200, 125, 200, 50);
// No fill
noFill();
ellipse(200, 40, 20, 20);
}
function drawmouth() {
noStroke();
fill(255, 0, 127);
ellipse(200, 250, 50, 20);
}
function drawarms() {
stroke(0);
strokeWeight(30);
line(150, 350, 300, 300);
}
function drawbody() {
noStroke();
fill(255, 255, 0);
rect(150, 275, 100, 200);
}