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

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

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
TweenInterpolation ( ) : System

Initializes an instance of TweenInterpolation.

TweenInterpolation ( bool isLinear ) : System

Initializes an instance of TweenInterpolation.

Method Details

Interpolate() public abstract méthode

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.
Résultat double

TweenInterpolation() protected méthode

Initializes an instance of TweenInterpolation.
protected TweenInterpolation ( ) : System
Résultat System

TweenInterpolation() protected méthode

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