69. tseq

tseq is a triggerable sequencer. It is clocked by a trigger signal trig and has modes controlled via mode. ft is a lambda which produces the table that tseq sequences from.

mode 0 is linear sequencing. mode 1 is random.

<<ugens-top>>=
(define (tseq trig mode ft)
  (param trig)
  (param mode)
  (ft)
  (rvl "tseq"))



prev | home | next