Class CubicEase
Represents an easing function that creates an animation that accelerates and/or decelerates using the formula f(t) = t³.
Implements
Namespace: Evergine.Framework.Animation
Assembly: Evergine.Framework.dll
Syntax
public class CubicEase : EasingFunctionBase, IEasingFunction
Methods
EaseInCore(double)
Core easing method.
Declaration
protected override double EaseInCore(double normalizedTime)
Parameters
| Type | Name | Description |
|---|---|---|
| double | normalizedTime | The normalized time. |
Returns
| Type | Description |
|---|---|
| double | A double value result. |