kopia lustrzana https://github.com/villares/sketch-a-day
main
rodzic
e43e63e81d
commit
0fb0250994
Plik binarny nie jest wyświetlany.
|
Po Szerokość: | Wysokość: | Rozmiar: 410 KiB |
|
|
@ -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()
|
||||
Ładowanie…
Reference in New Issue