'Slinky Animated Sequence - by SierraKen
'August 3, 2020
h = 2: h2 = -.04: fuzzy = 150
c1 = 255: c2 = 255: c3 = 169
t = -400
seconds = seconds + 1
sec = (60 - seconds) * 6 + 280
xx
= INT(SIN(sec
/ 180 * 3.141592) * 180) + 400 yy
= INT(COS(sec
/ 180 * 3.141592) * 180) + 300 s = sec
s = s + h
x
= COS(s
* 3.141592 / fuzzy
) * d
y
= SIN(s
* 3.141592 / fuzzy
) * d
x2 = x + xx: y2 = y + yy
x3 = x2 + t
CIRCLE (x3
, y2
+ 50 + h
- (h2
* 10)), sz
, _RGB32(c1
, c2
, c3
) seconds = 0
c1 = 0: c2 = 0: c3 = 0
again:
seconds = 0
c1 = 255: c2 = 255: c3 = 169
t = t + 355