C# Class ComponentFactory.Quicksilver.Layout.EasingCalculation

Provides calculation of easing values using predefined easing equations.
Afficher le fichier Open project: ComponentFactory/Quicksilver Class Usage Examples

Méthodes publiques

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

Method Details

Calculate() public méthode

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

EasingCalculation() public méthode

Initialize a new instance of the EasingCalculation class.
public EasingCalculation ( Easing easing ) : System
easing Easing Initial easing algorithm.
Résultat System