menu
three_dart package
documentation
three3d/math/math_utils.dart
MathUtils
lerp<T extends num> static method
lerp<T extends num> static method
dark_mode
light_mode
lerp<
T extends num
>
static method
num
lerp
<
T extends num
>(
T
x
,
T
y
,
T
t
)
Implementation
static num lerp<T extends num>(T x, T y, T t) { return (1 - t) * x + t * y; }
three_dart package
documentation
three3d/math/math_utils
MathUtils
lerp<T extends num> static method
MathUtils class