C# Class Ensage.Common.Menu.Transitions.CubicEaseInOut

The cubic ease in out.
Inheritance: Transition
Show file Open project: EnsageSharp/Ensage.Common

Public Methods

Method Description
CubicEaseInOut ( double duration )

Initializes a new instance of the CubicEaseInOut class.

Equation ( double t, double b, double c, double d ) : double

The equation.

Method Details

CubicEaseInOut() public method

Initializes a new instance of the CubicEaseInOut class.
public CubicEaseInOut ( double duration )
duration double /// The duration. ///

Equation() public method

The equation.
public Equation ( double t, double b, double c, double d ) : double
t double /// The t. ///
b double /// The b. ///
c double /// The c. ///
d double /// The d. ///
return double