For this project, I just started out making shapes and experimenting with colors that resonated with me. Especially because I’m new to processing, I decided to let the process of creating a self-portrait guide itself through more abstract imagery, allowing what I was making to reflect the self portrait as opposed to trying to do something more figurative.
function setup() {
createCanvas(600, 600);
}
function draw() {
background(120,180,180);
fill(255);
ellipse(300,300,450,450);
fill(255,162,164);
ellipse(300,300,250,300);
fill(255,255,202);
triangle(30,75,58,20, 86,75);
triangle(130,175,158,120, 186,175);
triangle(230,275,258,220, 286,275);
triangle(330,375,358,320, 386,375);
triangle(430,475,458,420, 486,475);
triangle(530,575,558,520,586,575);
stroke(0);
strokeWeight(10);
line(600,80,325,600);
line(600,20,225,600);
line(450,18,200,580);
fill(0);
ellipse(300,300,50,50);
}