C# Class System.Windows.Media.Glitz.TweenInterpolation

Provides the functionality for interpolating an animation from start to finish.
Mostrar archivo Open project: nikhilk/silverlightfx Class Usage Examples

Public Methods

Method Description
Interpolate ( double t ) : double

Implements a interpolation function that progresses an animation. This represents a function f(t) where t = [0...1] such that it is continuous and f(0) == 0 and f(1) == 1. Interpolation can be used to modify the default linear progression.

Protected Methods

Method Description
TweenInterpolation ( ) : System

Initializes an instance of TweenInterpolation.

TweenInterpolation ( bool isLinear ) : System

Initializes an instance of TweenInterpolation.

Method Details

Interpolate() public abstract method

Implements a interpolation function that progresses an animation. This represents a function f(t) where t = [0...1] such that it is continuous and f(0) == 0 and f(1) == 1. Interpolation can be used to modify the default linear progression.
public abstract Interpolate ( double t ) : double
t double The current progress value based on linear interpolation.
return double

TweenInterpolation() protected method

Initializes an instance of TweenInterpolation.
protected TweenInterpolation ( ) : System
return System

TweenInterpolation() protected method

Initializes an instance of TweenInterpolation.
protected TweenInterpolation ( bool isLinear ) : System
isLinear bool Whether this instance represents the linear interpolation.
return System