Phasor's value doesn't move from 0 line

I was expecting that the plot of Phasor should look like a linear ramp going from 0 to 1, but the plot below doesn’t move from the 0 line:

screen

I was expecting some thing like

screen

What am I missing?

Try overriding Phasor’s default parameters with either a rate less than 1, or an upper bound far above 1.

Phasor’s next sample = wrap(current sample + rate, low bound, high bound) where “wrap” for floats is low <= y < high (exclusive upper bound). So the default parameters will, on every sample, increment to the upper bound 1 and wrap back to 0.

hjh