C# Класс System.Windows.Media.Glitz.TweenInterpolation

Provides the functionality for interpolating an animation from start to finish.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
TweenInterpolation ( ) : System

Initializes an instance of TweenInterpolation.

TweenInterpolation ( bool isLinear ) : System

Initializes an instance of TweenInterpolation.

Описание методов

Interpolate() публичный абстрактный Метод

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.
Результат double

TweenInterpolation() защищенный Метод

Initializes an instance of TweenInterpolation.
protected TweenInterpolation ( ) : System
Результат System

TweenInterpolation() защищенный Метод

Initializes an instance of TweenInterpolation.
protected TweenInterpolation ( bool isLinear ) : System
isLinear bool Whether this instance represents the linear interpolation.
Результат System