rsc3/doc/examples/ugen/unary-ops/oct-cps.help.scm

12 lines
277 B
Scheme
Raw Normal View History

2022-08-24 13:53:18 +00:00
;; (oct-cps a)
;; Convert decimal octaves to cycles per second.
(audition
(let ((f (oct-cps (line kr 2 9 6 remove-synth))))
(out 0 (mul (saw ar f) 0.2))))
(audition
(let ((f (oct-cps (u:round (line kr 2 9 6 remove-synth) (/ 1 12)))))
(out 0 (mul (saw ar f) 0.2))))