rsc3/doc/help/ugen/oscillators/blip.help.scrbl

16 lines
365 B
Text
Raw Normal View History

2022-08-24 13:53:18 +00:00
#lang scribble/manual
@(require (for-label racket))
@title{(import (rsc3))
(audition (out 0 (mul (blip ar 440 200) 0.15)))}
Modulate frequency
(let ((f (x-line kr 20000 200 6 remove-synth)))
(audition (out 0 (mul (blip ar f 100) 0.2))))
Modulate number of harmonics.
(let ((h (line kr 1 100 20 remove-synth)))
(audition (out 0 (mul (blip ar 200 h) 0.2))))