
RANDOM FLOAT/INT
----------------

Everytime the History Up pin is set, a random number is sent to the Value Out pin; the internal History buffer will be navigated upwards until its end, then a new random number will be generated and stored.
Everytime the History Down pin is set, a previously generated random number in the internal History buffer is sent to the Value Out pin.
When no history feature is required, please just use the History Up pin to generate a new random number.
The random number range can be specified by the Min and Max pins (inclusive).

(Int version only): by setting No Repeat, no identical consecutive numbers will be generated. This feature is NOT present in the Float version because the algorithm used cannot generated two identical Float numbers (it would be pretty impossible anyway).

NOTE: by specifying Max < Min, their values will be swapped; by specifying Max = Min, a single value will always be generated (no matter the No Repeat setting)

NOTE: by setting an integer range whose absolute difference is one (eg [3,4] or [-6,-5]) and setting No Repeat, Min and Max will be generated in sequence: this is perfectly normal.


