13 lines
337 B
Racket
13 lines
337 B
Racket
#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))))
|
|
|