11 lines
385 B
Scheme
11 lines
385 B
Scheme
|
;; (klang rate freqScale freqOffset spec)
|
||
|
|
||
|
;; Bank of fixed oscillators. The UGen assistant klang.spec can help
|
||
|
;; create the 'spec' entry. Note that the SC3 language reorders the
|
||
|
;; inputs, the rsc3 client does not.
|
||
|
|
||
|
(let ((d (klang-data '(440 550 660 770 880 990 1000)
|
||
|
'(0.05 0.02 0.07 0.04 0.05 0.02 0.03)
|
||
|
(replicate 7 0))))
|
||
|
(audition (out 0 (klang ar 1 0 d))))
|