rsc3/doc/help/ugen/oscillators/f-sin-osc.help.scrbl
2022-08-28 12:27:01 +02:00

32 lines
545 B
Racket

#lang scribble/manual
@(require (for-label racket))
@title{SC2: Note extra iphase argument.}
@racketblock[
(import (rsc3))
]
@racketblock[
(audition (out 0 (mul (f-sin-osc ar (mce2 440 550) 0) 0.05)))
]
@racketblock[
(let ((f (x-line kr 200 4000 1 remove-synth)))
(audition (out 0 (mul (f-sin-osc ar f 0) 0.25))))
]
Loses amplitude towards the end
@racketblock[
(let ((f (mul-add (f-sin-osc ar (x-line kr 4 401 8 remove-synth) 0)
200
800)))
(audition (out 0 (mul (f-sin-osc ar f 0) 0.25))))
]