Lerp Node
Linearly interpolates between min
and max
using x
as a factor.
Inputs:
x
: The interpolation factor. When0.0
, outputsmin
. When1.0
, outputsmax
.min
andmax
: The bounds of the interpolation.
Outputs:
out
: The interpolated value.