[]
        
(Showing Draft Content)

C1.Util.DX.ColorF.Lerp

Lerp Method

Lerp(ColorF, ColorF, float)

Performs a linear interpolation between two colors.

Declaration
public static ColorF Lerp(ColorF start, ColorF end, float amount)
Parameters
Type Name Description
ColorF start

Start color.

ColorF end

End color.

float amount

Value between 0 and 1 indicating the weight of end.

Returns
Type Description
ColorF

The linear interpolation of the two colors.

Remarks

This method performs the linear interpolation based on the following formula.

start + (end - start) * amount

Passing amount a value of 0 will cause start to be returned; a value of 1 will cause end to be returned.