Callie’s Page


This is my blog from my first semester at ITP. I have since switched to a Notion blog which you can view here.


Fall 2024



Intro to Physical Comp:



Intro to Comp Media:



Hypercinema:






P002 → Week 2 - Opposites



For this week’s assignment I considered a few different word pairs that weren’t necessarily total “opposites” but could make for an interesting challenge. “Nature / nurture” was a strong contender, though I ultimately chose “seeing / believing” 

For “seeing,” I wanted to try to recreate a pair of eyes that could follow the cursor, blink, and change color using some of the more recent animation functions we learned. 

I started with one eye and didn’t have too much trouble using the map() function and system variables like mouseY and mouseX to create a moving eye








The blinking animation was a bigger challenge - we haven’t gotten into too many conditionals yet, so instead I tried to keep it simple. 

Instead of swapping the eye shapes with a closed “state,” which was my initial thought, I drew thin rectangles behind the eyes that would be revealed on click. 

I could accomplish this by using variables for the eye shape sizes. I also added in a randomly generated iris color swap after each click for fun. 
function mousePressed() {

  //hide all of the eye shapes on click so that the rectangle representing the "closed eye" is revealed

circlesize = 0;
  irissize = 0;
  pupilsize = 0;
  eyecolor = color(random(255), random(255), random(255));
}


function mouseReleased() {

  //bring all of the eye shapes back when click is finished

circlesize = 50;
  irissize = 35;
  pupilsize = 25;


The much more challenging part to execute was the “believing” portion of my sketch. I wanted to create a glow effect just off the edge of the screen that would vanish if the mouse moved towards it  - something intriguing that could never be directly revealed. 

The glow effect was challenging to create without using a for loop - I got help from office hours and took inspiration from this sketch by Jesse Harding https://editor.p5js.org/enickles/sketches/haKZ5xFK3

It works by drawing increasingly larger translucent circles



 
I messed around with this sketch until I started to get the kind of effect I wanted - dark in the center and light on the edges 

I messed around with the numbers and multipliers to get the right opacity/spread, and also adjusted my code to be adaptable to any screen height. 

At first the glow tracked directly to mouseX and mouseY, but after doing Question 4 on this week’s worksheet I was inspired to add in a bit of a “lag” because I preferred that effect. 

The final result: