Create dynamic visuals with Processing. Creating compositions of random lines is easy with Processing. Lines of various shades of grey are drawn across the width of the frame inside a for loop. Random Lines, Black Background This first version creates an 800 x 600 display window with a black background. /*programmingisfun.com*/ size(800, 600); smooth(); background(0); ...continue reading "Random Lines with Processing"