draft of effect routing code
This commit is contained in:
parent
7723b84564
commit
7e9f99dad2
1 changed files with 15 additions and 0 deletions
15
rsc3/examples/routing.rkt
Normal file
15
rsc3/examples/routing.rkt
Normal file
|
@ -0,0 +1,15 @@
|
|||
#lang racket
|
||||
|
||||
|
||||
;; adds an effect to the end of the effect chain of the given track
|
||||
;;
|
||||
(define (append-effect track-num effect-ugen)
|
||||
; TODO
|
||||
empty)
|
||||
|
||||
;; creates a ugen that is routed
|
||||
;; in: input bus channel
|
||||
;; out: output bus channel
|
||||
(define (make-effect-ugen effect-ugen in out)
|
||||
; TODO
|
||||
empty)
|
Loading…
Reference in a new issue