xxxxxxxxxx
55
// Scared teddy character
//
// Jared Donovan 2022
//
// Draws a scared teddy character.
let lightBrown = "#E5A931";
let darkBrown = "#744D00";
let bgColor = "#5CA7CB";
function setup() {
createCanvas(200, 200);
strokeWeight(2);
}
function draw(){
background(bgColor);
// Ears
fill(darkBrown);
circle(40, 60, 60);
circle(160, 60, 60);
fill(0);
circle(40, 60, 40);
circle(160, 60, 40);
// Face background
fill(lightBrown);
circle(100, 100, 150);
// Whites of eyes
fill(255);
noStroke();
circle(80, 90, 60);
circle(120, 90, 60);
// Pupils
fill(0);
ellipse(80, 100, 20);
ellipse(120, 100, 20);
// Mouth
fill(0);
ellipse(100, 160, 20, 10);
// Nose
stroke(0);
fill(darkBrown);
ellipse(100, 130, 60, 40);
// Nostrils
fill(0);
circle(90, 138, 5);
circle(110, 138, 5);
}