C# Класс ComponentFactory.Quicksilver.Layout.EasingCalculation

Provides calculation of easing values using predefined easing equations.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Calculate ( double t, double b, double c, double d ) : double

Find the easing value using the current easing equation.

EasingCalculation ( Easing easing ) : System

Initialize a new instance of the EasingCalculation class.

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

Calculate() публичный Метод

Find the easing value using the current easing equation.
public Calculate ( double t, double b, double c, double d ) : double
t double Elapsed time.
b double Starting value.
c double Delta change from start to ending value.
d double Total duration.
Результат double

EasingCalculation() публичный Метод

Initialize a new instance of the EasingCalculation class.
public EasingCalculation ( Easing easing ) : System
easing Easing Initial easing algorithm.
Результат System