Project 01 – Self Portrait

This is what I wish I looked like.

Self-PortraitDownload
function setup() {
    createCanvas(800, 800);
    background(250);
}

function draw() {
//German Flag background
    fill(0, 0, 0);
    rect(0, 0, 800, 800/3);   //creates the black portion
    fill(218, 41, 28);
    rect(0, 800/3, 800, 1600/3);    //creates the red portion
    fill(255, 205, 0);
    rect(0, 1600/3, 800, 800);    //creates the yellow portion
//left face line
    line(250, 250, 250, 500);
//right face line
    line(550, 250, 550, 500);
//hat
    strokeWeight(3);
    fill(155, 175, 220);
    arc(400, 250, 300, 225, PI, 0, CHORD);   //creates the hat itself
    fill(255, 233, 220);
    arc(400, 230, 90, 60, PI, 0, CHORD);    //provides the skin color underneath
    arc(340, 300, 50, 15);    //provides the smaller arc within the hat
//left jawline
    line(250, 500, 370, 570);
//right jawline
    line(550, 500, 430, 570);
//chin
    strokeWeight(2);
    arc(400, 570, 60, 20, 0, PI);    //physical chin
    strokeWeight(0);
    rect(250, 250, 300, 250);   //the following chin commands are all to color that portion of the face
    fill(255, 233, 220);
    rect(370, 470, 60, 100);
    triangle(250, 500, 370, 500, 370, 570);
    triangle(550, 500, 430, 570, 430, 500);
    strokeWeight(1);
//eyebrows
    strokeWeight(4);
    fill(0, 0, 0);
    quad(370, 280, 370, 290, 300, 295, 305, 285);   //left eyebrow
    strokeWeight(5);
    noFill();
    arc(460, 290, 55, 30, PI, 0);   //right eyebrow
//nose
    fill(255, 233, 220);
    strokeWeight(3);
    arc(400, 395, 30, 25, 0, PI);
    arc(385, 395, 15, 15, 1/2*PI, 3/2*PI);    //left nostril
    arc(415, 395, 15, 15, 3/2*PI, 1/2*PI);    //right nostril
//mouth
    fill(250, 250, 250);
    arc(400, 450, 100, 100, 0, PI, CHORD);

//eyes
    ellipse(340, 310, 50, 25);    //left eye
    ellipse(460, 310, 50, 25);    //right eye
    fill(100, 41, 19);
    ellipse(340, 310, 30, 25);    //left iris
    ellipse(460, 310, 30, 25);    //right iris
    fill(0, 0, 0);
    circle(340, 310, 15);   //left pupil
    circle(460, 310, 15);   //right pupil

}

L01 – My Inspiration

An interactive project I admire is Club Penguin. Club Penguin before its discontinuation was an online children’s game that became popular among people of all ages. I admire the simplicity of the game itself, but also the community built by the chat feature within the game. Even years after original players of the game had become “too old” to play, many still enjoyed it as well as created a multitude of different forms of art from it. Memes and YouTube videos were created daily about Club Penguin which shows the lasting impact the project had. The idea was started by a singular person and then developed by himself, Lance Priebe, and a co-founder, Lane Merrifield. The company itself was formed with 10 employees and eventually grew to over 10 times that. The game was developed for years and there is no information regarding how long the bare bones of it took to create. Sources state the game was created with commercial software, utilizing Flash Player to run. The code itself uses many things, such as java, ActionScript, and more. It has also been said that the company did create its own custom extensions for preexisting software for optimization. The fan page for the game states the founder got his inspiration from a newspaper depicting a penguin and a banana peel. The futures Club Penguin pointed to have already been seen. As an old, discontinued game, it still has a strong fan-base and inspires media. A simple project has had a lasting impact which gives insight into how influential computational projects can be. The game itself was even sold to Disney for a guaranteed $350 million dollars, revealing that someone with a passion and an idea can become successful no matter what it is.

A link is not possible as the game has been shutdown.
Official Title: Club Penguin
– Creator/Founder: Lance Priebe
– Co-Founder: Lane Merrifield
Source of Information: https://clubpenguin.fandom.com/wiki/Club_Penguin#:~:text=They%20never%20advertised%20at%20all,Puffle%20temporarily%20for%20the%20party
*This information may not be accurate as it is simply a fan made forum
*however it was one of the sole places I could find any information on the
*history and creation of the project.

Club Penguin Shuts Down After Disney Claim, U.K. Child-Porn Arrest - Variety