This is my blog from my first semester at ITP. I have since switched to a Notion blog which you can view here.
Intro to Physical Comp:
Intro to Comp Media:
P004 → Week 4 - Time
For this assignment, I was inspired by my fridge.
We have these preschool-style magnets on our fridge, and I love how the messages change over time as different visitors come and leave their mark on our apartment. It also takes a long time to spell something out, which makes each word feel very intentional.
I wanted to recreate this type of interaction in p5.
I hadn’t used the preload() function yet, so I started out by uploading a custom font and tested displaying a single letter.
From here I was able to display all the letters I wanted by creating an array of strings and looping through the list to display each one. I also added color variation with an array of 5 colors that would be randomly assigned to each letter.
Next, I was able to apply object-oriented programming based on the assigned Coding Train videos to create show(), pressed(), and notPressed() functions that would let me display each letter, and drag them around the screen.
I also heavily referenced this sketch by Ellen to implement the dragging.
The issue with this version was that the mouse can select multiple magnets at once and drag them around in a clump - I wanted only one magnet at a time to be moveable.
I was able to achieve the interaction I wanted thanks to an idea from Ellen to detect which magnets have been selected by the mouse, place them in a new array, and then only implement the dragging for the first magnet in the array.
I wasn’t able to get to it this week, but I would also like to display the letters without overlap to feel like a more realistic experience (I manually adjusted them in this screenshot, but this is a sample arrangement of how they would ideally appear after running the code).
I feel like some form of object communication will be the answer?