
Tiny Arcade
Challenges:
I used object oriented programming for all the elements for the first time in this code. It worked out well and I got to teach myself a new skill.
The led matrix was arranged in a non serpentine pattern which made the x and y coordinates hard to realize. I had to convert my x,y location that I wanted a pixel to be drawn at into an index value from 0 to 63.
Collision detection sounds like an easy problem, just check if two things are in the same place, but it proved to be very difficult.
I tried to make the old school pong game breakout I believe its called, but I could not handle all the collisions from all sides on the bricks.