Update sketch_2020_01_28a.pyde

main
Alexandre B A Villares 2020-01-28 23:01:50 -02:00
rodzic 13f4c17af9
commit a634594a13
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -18,7 +18,7 @@ def setup():
global radius
size(720, 720, P3D)
radius = int(height * .65)
radius = int(height * .60)
colorMode(HSB)
strokeWeight(3)
@ -34,7 +34,7 @@ def draw():
translate(width / 2, height / 2)
rotation += 0.02 # simple rotation on Y axis
rotateY(rotation)
noise_offset += 0.03 # walks on noise space!
noise_offset += 0.02 # walks on noise space!
for Point in points:
Point.plot(noise_offset, noise_scale)