10 lines
204 B
Scheme
10 lines
204 B
Scheme
|
;; (tan-h a)
|
||
|
|
||
|
;; Tangent.
|
||
|
|
||
|
(let* ((a (line kr (- pi) pi 1 remove-synth))
|
||
|
(b (sub (fdiv (tan-h a) (/ pi 2)) 1))
|
||
|
(f (mul-add b 900 1600)))
|
||
|
(audition
|
||
|
(out 0 (mul (sin-osc ar f 0) 0.1))))
|