ClassAnimationValuePointFCalculator
Represents a value point animation calculator using floating point values.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
public class AnimationValuePointFCalculator : AnimationValueCalculator
Inheritance: objectAnimationValueCalculatorAnimationValuePointFCalculator
Inherited Members
Constructors
AnimationValuePointFCalculator()
Declaration
public AnimationValuePointFCalculator()
Properties
AssociatedType
Gets the type associated with this animation calculator.
Declaration
public override Type AssociatedType { get; }
Property Value
The type that this calculator can animate.
Overrides
Methods
CalculateAnimatedValue(object, object, object, object, int, int, EasingCalculator)
Calculates the animated value for the current frame using interpolation and easing.
Declaration
public override object CalculateAnimatedValue(object startValue, object endValue, object currValue, object step, int currFrameNum, int totalFrameNum, EasingCalculator calc)
Parameters
startValue
The starting value of the animation.
endValue
The ending value of the animation.
currValue
The current value of the animation.
step
The animation step value.
currFrameNum
The current frame number.
totalFrameNum
The total number of frames.
calc
The easing calculator to apply.
Returns
The calculated animated value for the current frame.
Overrides
CalculateAnimationEndValue(object, object, int)
Calculates the animation end value from start value, step, and the total number of frames.
CalculateAnimationStep(object, object, int)
Calculates the animation step from start value, end value, and the total number of frames.
CalculateInversedStep(object)
Calculates the inverse of the specified animation step.