79. monset/monget

monset and monget are nodes used to set and get monolith channels. monget retrieves the value stored in channel chan. monset sets the value of channel chanto be in.

Note that monolith channels are essentially control rate signals that do implicit down sampling. monset will downsample using the first sample in the buffer. mongetdeals with the pointer to the register, which basically means the value is whatever set it last.

<<ugens-top>>=
(define (monget chan)
  (param chan)
  (rvl "monget"))
<<ugens-top>>=
(define (monset in chan)
  (param in)
  (param chan)
  (rvl "monset"))



prev | home | next