menu
oimo_physics package
documentation
math/math.dart
Math
lerp static method
lerp static method
dark_mode
light_mode
lerp
static method
double
lerp
(
double
x
,
double
y
,
double
t
)
Implementation
static double lerp(double x, double y, double t ) { return ( 1 - t ) * x + t * y; }
oimo_physics package
documentation
math/math
Math
lerp static method
Math class