| EasingMode Enumeration |
Defines how the easing functions interpolate.
Namespace: DigitalRune.Animation.EasingAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax Public Enumeration EasingMode
public enum class EasingMode
Members
| Member name | Value | Description |
---|
| EaseIn | 0 |
The interpolation follows the formula of the easing function.
|
| EaseOut | 1 |
The interpolation follows the reverse of the formula of the easing function.
|
| EaseInOut | 2 |
The interpolation uses EaseIn for the first half of the interpolation and
EaseOut for the second half.
|
See Also