CubicBezier
(x1, y1, x2, y2)
Function
Cubic bezier easing with control points (x1,y1) and (x2,y2). The curve runs from (0,0) to (1,1).
Matches the CSS cubic-bezier(x1, y1, x2, y2) timing function.
TryGetFunction
(name, function)
bool
Get an easing function by name (ie, "ease-in", "cubic-bezier(0.1, 0.7, 1, 0.1)" or "steps(4, end)").
If the function exists we return true, otherwise return false.