Espaço - fabrica-escola/artes-2o-ano-carmem-silva GitHub Wiki
# espaço(releitura da obra - JP)
preto = color(0)
lilas = color(200, 162, 200)
branco = color(255)
def setup():
size(600, 600)
background(preto)
for n in range(100000):
x = random(50, 250)
y = random(50, 550)
taxa = 0.5
cor = lerpColor(lilas, preto, taxa)
stroke(cor)
point(x, y)
for n in range(100000):
x = random(350, 550)
y = random(50, 550)
taxa = 0.5
cor = lerpColor(lilas, preto, taxa)
stroke(cor)
point(x, y)
for n in range(10000):
x = random(0, 600)
y = random(0, 600)
stroke(branco)
point(x, y)
filter(BLUR, 2)
saveFrame("releitura_degrade_espaco.png")
Obra Original(Vibrações)