Alexandre B A Villares 2022-02-16 23:40:27 -03:00
rodzic e43e63e81d
commit 0fb0250994
2 zmienionych plików z 14 dodań i 0 usunięć

Plik binarny nie jest wyświetlany.

Po

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

Wyświetl plik

@ -0,0 +1,14 @@
def setup():
size(600, 600, P3D)
def draw():
background(0)
translate(300,300,0)
for b in range(-90,90,10):
for a in range(0,360,10):
push()
rotateX(radians(b))
rotateY(radians(a+frameCount/10.))
translate(0,0,-200)
circle(0,0,10)
pop()