Expand description
Contains the Easing enum which defines many standard easing types available for animations,
as well as an EasingFunction trait for defining custom easings.
Structs§
- Cubic
Bezier Easing - Easing function defined by a cubic bezier curve with the start and end points fixed at
(0, 0)and(1, 1), i.e. only the control points are specified. - Linear
Easing - Linear easing which returns the
xvalue as theyresult. Has the same behavior as Easing::Linear or Easing::default.
Enums§
- Easing
- Specifies a standard or custom
EasingFunction.
Traits§
- Easing
Function - Provides an easing function, AKA animation timing function, for non-linear interpolation of values, typically along some curve.