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