rsc3/doc/help/ugen/noise/lin-rand.help.scrbl
2022-08-28 12:27:01 +02:00

18 lines
383 B
Racket

#lang scribble/manual
@(require (for-label racket))
@title{(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.
@racketblock[
(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))))
]