J: Processing Psuedocode
I wanted to draw a grid-like animation that positioned on x,0 and y,0 at random. PsuedoCode: float x = 0; float y = 100; float z = 0; floatt h = 100; void setup () { //set up background & size } void draw () { //draw rect by incrementing x axis } If (x == length...
Continue Reading