<pre lang=”javascript”> – [OLD SEMESTER] 15-104 • Introduction to Computing for Creative Practice https://courses.ideate.cmu.edu/15-104/f2021 Professor Tom Cortina • Fall 2021 • Introduction to Computing for Creative Practice Tue, 07 Sep 2021 17:59:41 +0000 en-US hourly 1 https://wordpress.org/?v=5.8.9 Project 1: My Self Portrait https://courses.ideate.cmu.edu/15-104/f2021/2021/09/07/project-1-my-self-portrait-9/ https://courses.ideate.cmu.edu/15-104/f2021/2021/09/07/project-1-my-self-portrait-9/#respond Tue, 07 Sep 2021 17:59:41 +0000 ]]> ]]> https://courses.ideate.cmu.edu/15-104/f2021/?p=64998
function setup() {
    createCanvas(800, 600);
}
function draw() {
    background(249,246,238);//face color
    fill(5,5,5); //black hair 
    rect(0,0,70,600);
    rect(100,0,40,600);
    rect(720,0,70,600);
    rect(650,0,40,600);
    fill(118,93,53);//highlights
    rect(70,0,30,600);
    rect(690,0,30,600);

    fill(5,5,5);//eyebrows
    strokeWeight(18);
    line(450,150,550,140);//right eyebrow
    line(550,140,590,155);
    line(350,150,250,140);//left eyebrow
    line(210,155,250,140);

    fill(255,255,255);//eyes
    ellipse(260,250,50,60);//left eye
    ellipse(530,250,50,60);//right eye
 
    fill(48,43,36);//lashes
    line(260,200,260,210);//left 1
    line(240,200,250,210);//left 2
    line(530,200,530,210);//right 1
    line(550,200,540,210);//right 2

    fill(48,43,36);//eyebags
    strokeWeight(13);
    line(275,290,240,330);//left 
    line(535,290,560,330);//right 

    fill(208,165,105);//nose
    triangle(400,250,360,350,440,350);

    fill(179,78,50);//lips
    strokeWeight(7);
    arc(350,400,200,90,0,HALF_PI,CHORD);

    noLoop();
}

My project is a very zoomed in version of my face and emphasizes my highlights, and is mostly symmetrical other than my mouth.

]]>
https://courses.ideate.cmu.edu/15-104/f2021/2021/09/07/project-1-my-self-portrait-9/feed/ 0