xxxxxxxxxx
137
//Name: Mbebo Nonna
//Assignment: Self-Portrait
let cloudx = 70;
let cloudy = 50;
let earx = 230;
let eary = 310;
let earw = 20;
let earh = 30;
let barkwidth = 20;
let barkheight = 120;
function drawCloud(a, b){
ellipse(a, b, cloudx, cloudy);
ellipse(a+15, b+10, cloudx, cloudy);
ellipse(a-25, b+10, cloudx, cloudy);
}
function drawTree(x, y, a, b){
fill(78,53,36)
rect(x,y , a, b)
fill(42,126,25)
ellipse(x+10,y-10,80)
}
function setup() {
createCanvas(700, 700);
}
function draw() {
background(135, 206, 235);
//sun
fill(253, 184, 19)
ellipse(250,20, 80)
//clouds
noStroke();
fill(220);
drawCloud(105, 30)
drawCloud(505, 30);
drawCloud(305, 60);
//mountains
fill(85, 65, 36)
stroke(3);
triangle(350, 350, 600, 80, 700, 350);
triangle(380, 360, 630, 80, 730, 350);
//ground
fill(133, 103, 28);
rect(0, 350, 700);
//neck
stroke(1)
fill(141, 85, 36);
rect(290, 390, 20, 40);
//ears
ellipse(earx, eary, earw, earh);
ellipse(earx+140, eary, earw, earh);
//face
ellipse(300, 320, 150, 170);
//eyebrows
arc(270, 310, 30, 30, PI + QUARTER_PI, TWO_PI-QUARTER_PI);
arc(330, 310, 30, 30, PI + QUARTER_PI, TWO_PI-QUARTER_PI);
//eyes
fill(220);
ellipse(270, 310, 30, 20)
ellipse(330, 310, 30, 20)
fill(0)
ellipse(270, 310, 20)
ellipse(330, 310, 20)
//nose
stroke(1);
fill(123,75,42);
arc(300,335, 20, 20, QUARTER_PI, HALF_PI+QUARTER_PI)
//mouth
fill(189,154,122)
ellipse(300, 370, 40, 10)
//hair
noStroke()
fill(40)
ellipse(290, 240, 100, 50);
ellipse(310, 240, 100, 50);
ellipse(245,265, 30, 60);
ellipse(355,265, 30, 60);
//body
fill(32,42,68);
rect(210, 420, 180, 240, 30);
//shorts
stroke(1);
fill(139,0,0);
rect(210, 630, 180, 180);
//arms
stroke(1);
fill(141, 85, 36);
rect(190, 460, 20, 180, 20);
rect(390, 460, 20, 180, 20);
//trees
drawTree(500, 340, barkwidth, barkheight)
drawTree(580, 360, barkwidth, barkheight)
drawTree(430, 380, barkwidth, barkheight)
//sleeves
noStroke()
fill(32,42,68);
translate(width / 2 - 135, height / 2 + 110);
rotate(PI / 3.0);
rect(-26, -26, 52, 52);
rotate(PI/3.0)
rect(-112, -170, 52, 52);
rotate(PI/-3.0);
}