LerpStable

Overload list

Choose your operating system:

Windows

macOS

Linux

Name Description

Public function Static

constexpr T

 

LerpStable

(
    const T& A,
    const T& B,
    double Alpha
)

Performs a linear interpolation between two values, Alpha ranges from 0-1.

Public function Static

constexpr T

 

LerpStable

(
    const T& A,
    const T& B,
    float Alpha
)

Performs a linear interpolation between two values, Alpha ranges from 0-1.

Public function Static

auto

 

LerpStable

(
    const T1& A,
    const T2& B,
    const T3& Alpha
)

Allow passing of differing A/B types.