Interface IEasingFunction
Interface for creating custom Easing Function.
Namespace: Evergine.Framework.Animation
Assembly: Evergine.Framework.dll
Syntax
public interface IEasingFunction
Methods
Ease(double)
Define the custom Ease function.
Declaration
double Ease(double normalizedTime)
Parameters
Type | Name | Description |
---|---|---|
double | normalizedTime | Normalized Time. |
Returns
Type | Description |
---|---|
double | Calculated value. |