rsc3/doc/examples/ugen/binary-ops/round.help.scm

13 lines
290 B
Scheme
Raw Normal View History

2022-08-24 13:53:18 +00:00
;; (round a b)
;; Rounds a to the nearest multiple of b.
(let* ((x (mouse-x kr 60 4000 0 0.1))
(f (u:round x 100)))
(audition
(out 0 (mul (sin-osc ar f 0) 0.1))))
(let ((n (line kr 24 108 6 remove-synth)))
(audition
(out 0 (mul (saw ar (midi-cps (u:round n 1))) 0.2))))