menu
openworld package
documentation
three_dart/three3d/math/index.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; }
openworld package
documentation
three_dart/three3d/math/index
MathUtils
lerp<T extends num> static method
MathUtils class