draft of effect routing code

This commit is contained in:
Mustafa 2014-04-23 09:57:15 -07:00
parent 7723b84564
commit 7e9f99dad2

15
rsc3/examples/routing.rkt Normal file
View 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)