packages feed

hsc3-0.1: Help/UGen/Demand/duty.help.lhs

duty rate duration reset doneAction level

Demand results from demand rate ugens

A value is demanded from each ugen in the list and output according
to a stream of duration values.  The unit generators in the list
should be 'demand' rate.  When there is a trigger at the reset
input, the demand rate ugens in the list and the duration are
reset.  The reset input may also be a demand ugen, providing a
stream of reset times.

duration - time values. Can be a demand ugen or any signal.  The next
value is acquired after the duration provided by the last time value.

reset - trigger or reset time values. Resets the list of ugens and
the duration ugen when triggered.  The reset input may also be a
demand ugen, providing a stream of reset times.

doneAction - action evaluated when the duration stream ends.

level - demand ugen providing the output values.

> n0 <- drand 8192 (MCE [0.01, 0.2, 0.4])
> n1 <- dseq 8192 (MCE [204, 400, 201, 502, 300, 200])
> let f = duty KR n0 0 RemoveSynth n1
> audition (out 0 (sinOsc AR (f * MCE [1, 1.01]) 0 * 0.1))

Using control rate signal, mouseX, to determine duration.

> let x = mouseX KR 0.001 2 Linear 0.1
> n <- dseq 8192 (MCE [204, 400, 201, 502, 300, 200])
> let f = duty KR x 0 RemoveSynth n
> audition (out 0 (sinOsc AR (f * MCE [1, 1.01]) 0 * 0.1))