rsc3/doc/help/ugen/ternary-ops/mul-add.help.scrbl

14 lines
337 B
Text
Raw Normal View History

2022-08-24 13:53:18 +00:00
#lang scribble/manual
@(require (for-label racket))
@title{(mul-add a b c)}
Functionally equivalent to (add (mul a b) c).
(let ((f (mul-add (lf-saw kr (mce2 10 9) 0) 200 400)))
(audition (out 0 (mul (sin-osc ar f 0) 0.1))))
(let ((f (add (mul (lf-saw kr (mce2 10 9) 0) 200) 400)))
(audition (out 0 (mul (sin-osc ar f 0) 0.1))))