Return an exponential interpolation between start and end.
start
end
For instance, exponentialInterpolation(2, 8, 0.5) is 4.
exponentialInterpolation(2, 8, 0.5)
4
Start value.
End value.
The interpolation value between 0 and 1.
The interpolated value.
Return an exponential interpolation between
start
andend
.For instance,
exponentialInterpolation(2, 8, 0.5)
is4
.