There's no sound here, but I decided to check out cones today and what I can do with them. So I figured out how to make that sound horn animation of horns increasing in size going toward 4 different corners of the screen at different times. This might be good with a sound program you make or anything like that.
'Sound Horns by Sierraken
'On June 5, 2020.
'Feel free to use any of this on your apps.
_TITLE "Sound Horns - by Sierraken"
start:
s = 0
xx = 400
yy = 300
'Choose size of cone.
'Choose direction of cone.
IF dd2
= 1 THEN st
= -.0625: dd
= -dd
IF dd2
= 2 THEN st
= -.0625: dd
= -dd
IF dd2
= 3 THEN st
= .0625: dd
= dd
IF dd2
= 4 THEN st
= .0625: dd
= dd
'Choose color of cone.
go:
'Calculate and draw cone.
s = s + 3
x
= COS(s
* 3.141592 / 180) * d
+ d
y
= SIN(s
* 3.151492 / 180) * d
- d
IF dd2
= 2 THEN x
= -x: y
= -y
dd = 0