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

The transition.
Mostrar archivo Open project: EnsageSharp/Ensage.Common Class Usage Examples

Private Properties

Property Type Description
Events_OnLoad void

Public Methods

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

The equation.

GetPosition ( ) : System.Vector2

The get position.

GetValue ( ) : float

The get value.

Start ( System.Vector2 from, System.Vector2 to ) : void

The start.

Start ( float from, float to ) : void

The start.

Protected Methods

Method Description
Transition ( double duration ) : System

Initializes a new instance of the Transition class.

Private Methods

Method Description
Events_OnLoad ( object sender, EventArgs e ) : void

The events_ on load.

Method Details

Equation() public abstract method

The equation.
public abstract 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

GetPosition() public method

The get position.
public GetPosition ( ) : System.Vector2
return System.Vector2

GetValue() public method

The get value.
public GetValue ( ) : float
return float

Start() public method

The start.
public Start ( System.Vector2 from, System.Vector2 to ) : void
from System.Vector2 /// The from. ///
to System.Vector2 /// The to. ///
return void

Start() public method

The start.
public Start ( float from, float to ) : void
from float /// The from. ///
to float /// The to. ///
return void

Transition() protected method

Initializes a new instance of the Transition class.
protected Transition ( double duration ) : System
duration double /// The duration. ///
return System