Alexandre B A Villares 2019-11-16 20:08:29 -02:00
rodzic c3388e8370
commit b234dc1bba
5 zmienionych plików z 17 dodań i 0 usunięć

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 29 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 26 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 28 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 30 KiB

Wyświetl plik

@ -0,0 +1,17 @@
#つぶやきProcessing
d,s,m=12,512,255
def setup():size(s,s);clear();stroke(m)
def draw():
f=frameCount
for _ in range(d):
translate(m,m)
rotate(TWO_PI/d)
translate(-m,-m)
n = noise(f*0.01)
point(f%s,n*s)
def keyPressed():
if key == ' ':
clear()
if key == 's':
saveFrame("###.png")