| EasingFunctionEase Method |
Determines the current progress of a transition.
Namespace: DigitalRune.Animation.EasingAssembly: DigitalRune.Animation (in DigitalRune.Animation.dll) Version: 1.4.0.0 (1.4.1.14427)
Syntax public float Ease(
float normalizedTime
)
Public Function Ease (
normalizedTime As Single
) As Single
public:
virtual float Ease(
float normalizedTime
) sealed
abstract Ease :
normalizedTime : float32 -> float32
override Ease :
normalizedTime : float32 -> float32
Parameters
- normalizedTime
- Type: SystemSingle
The normalized time of the transition. (0 represents the start and 1 represents the end of
the transition.)
Return Value
Type:
Single
The current progress of the transition. (0 represents the start and 1
represents the end of the transition.)
Implements
IEasingFunctionEase(Single)Exceptions See Also