Clamps Dictionary
n-exp-zero
Function
(n-exp-zero x min max)
Return the exponential interpolation for a normalized value in the range [min..max] as a float value. For x = 0 the result is always 0.
Arguments
x |
An input value in the range [0..1] to be interpolated. |
min |
The output value for x close to 0. |
max |
The output value for x = 1. |
Examples
(n-exp-zero 0 0.01 1) ; => 0.0 (n-exp-zero 0.5 0.01 1) ; => 0.1 (n-exp-zero 1 0.01 1) ; => 1.0
See also
Created: 2025-08-17 So 16:52