Week 2
My original intention was to mimic Roman Verostko’s Complex Lines with animation and using the decode 5 exercise as my basis. I was unable to figure out how to get multiples lines using noise points.
Initial page is empty
Circles appear on mousePressed()
As I continued to alter the code I created something similar to the circles above. Using the advice from Tyler Hobbs on how “Black isn’t the only background color you can use” I looked into making a grainy/paper like background.
After getting the first round of circles my next attempt was to have the circles appear every time the mouse clicked. But again I ran into the issue on how to have the noise points be reused.
Things I attempted to layer the circles on mouse clicks:
created a class for drawCircle() (I forgot to take a screenshot of the code I made for this ): )
placed mousePressed in draw inside an if statement
My assumption is I am trying to simplify the code with loops but noise requires more or the way I set up the class was incorrect but that would be the way to make noise draw() over and over again on mousePressed().
References: grainy() | decode exercise 3 and 5 | Tyler Hobbs