21 lines
507 B
Text
21 lines
507 B
Text
|
#lang scribble/manual
|
||
|
@(require (for-label racket))
|
||
|
|
||
|
@title{(sqr-dif a b)}
|
||
|
|
||
|
Square of the difference. Return the value of (a - b)**2. This is
|
||
|
more efficient than using separate unit generators for each
|
||
|
operation.
|
||
|
|
||
|
(audition
|
||
|
(out 0 (mul (sqr-dif (f-sin-osc ar 800 0)
|
||
|
(f-sin-osc ar (x-line kr 200 500 5 do-nothing) 0))
|
||
|
0.125)))
|
||
|
|
||
|
(let ((a (f-sin-osc ar 800 0))
|
||
|
(b (f-sin-osc ar (x-line kr 200 500 5 do-nothing) 0)))
|
||
|
(audition
|
||
|
(out 0 (mul (mul (sub a b) (sub a b))
|
||
|
0.125))))
|
||
|
|