xxxxxxxxxx
34
/** based on :
https://codeguppy.com/site/download/draw_with_code.pdf
*/
function setup() {
createCanvas(600, 550);
background("#aacc88"); // green
noStroke();
scale(10);
// head and ears
fill("#cc5511"); // brown
triangle(15, 20, 45, 20, 30, 50);
circle(15, 15, 20);
circle(45, 15, 20);
// nose
fill("black");
triangle(25, 40, 35, 40, 30, 50);
// eyes
fill("white");
circle(25, 25, 6);
circle(35, 25, 6);
fill("black");
circle(25, 27, 2);
circle(35, 27, 2);
// whiskers
stroke("black");
line(15, 40, 25, 43);
line(15, 50, 25, 46);
line(45, 40, 35, 43);
line(45, 50, 35, 46);
}