This week it was my birthday and I got one of my favorite books as a present ״Threads of Thoughts” by the amazing artist Keren Ronnen Rosenberg.
I was inspired by some of her works and the pictures in the book.
I wanted to create some sort of grid that changes colors randomly
for (var i0=0; i0<=10; i0++){
fill(mouseX-random(1,i0*10+10), (mouseX+mouseY/4),-random(1,i0*10+10), mouseY-random(1,i0*10+10));
rect(i0*100,0,100,25);
I loved the image of Keren’s workspace with all the squares on the wall.
After creating the grid I wanted to draw many rectangles in a random way, kind of as a reflection to the artist's mind. So I draw the loop of the rect in random values to make them turn in the canvas randomly.
Comments