linear_interpolateComputes the linear interpolation between two values.
firstThe initial value.
secondThe final value.
fractionThe interpolation fraction. A value of 0 returns the initial value, a value of 1 returns the final value, while any other value returns the relative position on the line joining the two values.
clamp_negativeIf true then the initial value will be returned whenever the fraction input is less than 0.
clamp_above_oneIf true then the final value will be returned whenever the fraction input is greater than 1.
interpolatedThe interpolated value.