Map source minimum to source maximum,
map dest. mininmum to dest. maximum.
all values between source min and source max should be equivalently translated into the destination room.
in german it is not much more than a “3 Satz” oder “Satz mit x”…
the modes are only interesting for input values outside the range [source min…source max](source min…source max).
the modes:
Float: if the source values are outside the source region just put the output outside the destination region…
Wrap: if the input is larger than source max just wrap around and begin with the destination min. output values will always be in [dest min…dest max](dest min…dest max)
Mirror: if an input values is bigger than source max, then mirror at this value. output values will always be in [dest min…dest max](dest min…dest max)
Clamp: if an input value is smaller than source min then output will be destination min. (…bigger than source max then output will be dest max)