Fixed the weird spinning behaviour

This commit is contained in:
Logan G 2023-12-02 23:49:30 -07:00
parent 61ea1e1453
commit 22290acbf0
Signed by: logan
GPG key ID: E328528C921E7A7A

View file

@ -69,7 +69,8 @@ while running:
t = time.time() - t0
bs_scale = (random.random() + 1)
if t < 6.2831 * bs_scale:
d_ang = (math.cos(t + 3.1415 * bs_scale) + 1) / (t + 1)
#d_ang = (math.cos(t + 3.1415 * bs_scale) + 1) / (t + 1)
d_ang = (math.e**(-0.4*t)) * (math.cos(0.25*t*bs_scale) + 1)
ang += d_ang * (random.random() / 2 + 1)
else:
i = int(-(ang % 360) / (360 / len(items)))