menu
raylib_dart package
documentation
raymath.dart
Lerp function
Lerp function
dark_mode
light_mode
Lerp
function
double
Lerp
(
double
start
,
double
end
,
double
amount
)
Implementation
double Lerp(double start, double end, double amount) => start + (end - start) * amount;
raylib_dart package
documentation
raymath
Lerp function
raymath library