Return the wrapped float value within a float range.
val = fwrap(value, range)
fwrap returns the float result of wrapping the value to fit between 0.0 and range; i.e., it will keep value within range by “wrapping” it around.
Note that this is not the same action as wrap, which effectively performs a modulo operation.
wrappedval = wrap(127.234, 11.787) // returns 9.36399364471