smooth

Function smooth 

Source
pub fn smooth(t: f64) -> f64
Expand description

Smooth rate function

t * t * t * (10.0 * s * s + 5.0 * s * t + t * t)

from https://github.com/3b1b/manim/blob/003c4d86262565bb21001f74f67e6788cae62df4/manimlib/utils/rate_functions.py#L17