Week 1 Self-portrait

My concept was to depict myself as an angry circle. When I’m provoked I get and increasingly large.

This part is particularly amazing

if (mouseIsPressed) {
  fill("red");
  circle(mouseX, mouseY, bigCircleSize);
} else {
  fill("green");
  circle(mouseX, mouseY, 50);  
}

 

Leave a Reply