rsc3/doc/examples/ugen/noise/lin-rand.help.scm

10 lines
314 B
Scheme
Raw Normal View History

2022-08-24 13:53:18 +00:00
;; (lin-rand lo hi minmax)
;; Generates a single random float value in linear distribution from
;; lo to hi, skewed towards lo if minmax < 0, otherwise skewed towards
;; hi.
(let ((f (lin-rand 200 10000 (mce2 -1 1)))
(a (line kr 0.4 0 0.01 remove-synth)))
(audition (out 0 (mul (f-sin-osc ar f 0) a))))