36. tog

tog is a toggle node. When in is a non-zero value, it will change its state from 0 to 1, or 1 to 0. tog is initialized to start with an initial state of 0.

<<ugens-top>>=
(define (tog in)
  (param in)
  (rvl "tog"))



prev | home | next