Linear interpolation between start and end by amount.
start
end
amount
amount should be in the range [0.0, 1.0].
[0.0, 1.0]
static double Lerp(num start, num end, num amount) { return (start + amount*(end - start)).toDouble(); }