lerp

fun lerp(    start: Double,     stop: Double,     @FloatRange(from = 0.0, to = 1.0) fraction: Double): Double

Linearly interpolate between start and stop with fraction between them.

Important: This is a Public Preview API. It may be changed or removed at any time.