• Blends between min and max, based on a fraction t.

    Parameters

    • min: number

      The minimum value, when t = 0.

    • max: number

      The maximum value, when t = 1.

    • t: number

      The position to blend between the minimum and maximum.

    Returns number

    0 when t == min, 1 when t == max, otherwise the blend between min and max. Not clamped.