pub fn spring<V>(from: V, to: V, duration: Duration) -> impl Stream<Item = V>where V: Lerp<Scalar = f32> + Clone + 'static,
Create a stream of interpolated values from one value to another over a Duration.
Duration