[Thumbnail Code](Processing.py)
import random
size(640, 480, P3D)
colorMode(HSB, 100)
background(0)
noStroke()
smooth()
for i in range(1000):
x = random.randint(0, width)
y = random.randint(0, height)
rectLength = random.randint(0,100)
fill(random.randint(0,100), 99, 99, random.randint(10, 60))
rotate(radians(random.randint( 0, 200)))
rect(x, y, rectLength, rectLength)