Minjae Jeong Project-01

sketch

function setup() {
    createCanvas(500,600);
    background(255,229,204);

}

function draw() {
    fill(242,215,215);
    ellipse(140,130,100,50);
    ellipse(360,130,100,44);

    fill('black');
    ellipse(140,130,40,40);
    ellipse(360,130,40,40);

    fill('brown');
    triangle(250,150,190,310,310,310);

    fill('black');
    strokeWeight(3);
    line(170,60,200,80);
    line(145,60,175,80);
    line(120,60,150,80);
    line(95,60,125,80);
    line(70,60,100,80);
    line(45,60,75,80);

    line(330,60,300,80);
    line(355,60,325,80);
    line(380,60,350,80);
    line(405,60,375,80);
    line(430,60,400,80);
    line(455,60,425,80);

    fill('red');
    rect(100,380,300,80);
    line(100,420,400,420);


}

I drew the most simplest self-portrait with only certain notable characteristics. Bushy eyebrows, smaller right eye, and big lips. Although no one might think this is my self portrait, but I tried to keep it as simple as possible while including some distinctiveness.

*I do not know how to modify the frame size, the whole frame disappears when I try data-width and data-height **Fixed

Leave a Reply