Phasor is a linear ramp between start and end values. When its trigger input crosses from non-positive to positive, Phasor's output will jump to its reset position. Upon reaching the end of its ramp Phasor will wrap back to its start.
freq
oscillating between start
and end
, then the rate should be (end - start) * freq / sr
where sr
is the sampling rate.Phasor is commonly used as an index control with BufRdand BufWr .
trig |
When triggered, jump to resetPos (default: 0, equivalent to start). |
rate |
The amount of change per sample, i.e at a rate of 1 the value of each sample will be 1 greater than the preceding sample. |
start |
Start point of the ramp. |
end |
End point of the ramp. |
resetPos |
The value to jump to upon receiving a trigger. |