My intention with this piece was to create something that looked simultaneously human and computerized.
The human element is the hand drawn style. The movement of the strokes, the variance of the density of the simulated particles of color, and inaccuracy of the grid are a few of the things I worked with to make this feel as though a human drew it.
The computerized element is the complexity and intricacy of the patterns. As each grid cell is created, its color is determined by taking the index of the cell, which has various definitions in this code, modulo some other number.
Modulo is not a difficult operator to understand (it simply returns the remainder of a division), but it is not typ...