xyginext  0.2.0
Second generation of xygine game creation framework
Functions
xy::Util::Easing Namespace Reference

Functions

static float easeInSine (float t)
 
static float easeOutSine (float t)
 
static float easeInOutSine (float t)
 
static float easeInQuad (float t)
 
static float easeOutQuad (float t)
 
static float easeInOutQuad (float t)
 
static float easeInCubic (float t)
 
static float easeOutCubic (float t)
 
static float easeInOutCubic (float t)
 
static float easeInQuart (float t)
 
static float easeOutQuart (float t)
 
static float easeInOutQuart (float t)
 
static float easeInQuint (float t)
 
static float easeOutQuint (float t)
 
static float easeInOutQuint (float t)
 
static float easeInExpo (float t)
 
static float easeOutExpo (float t)
 
static float easeInOutExpo (float t)
 
static float easeInCirc (float t)
 
static float easeOutCirc (float t)
 
static float easeInOutCirc (float t)
 
static float easeInBack (float t)
 
static float easeOutBack (float t)
 
static float easeInOutBack (float t)
 
static float easeInElastic (float t)
 
static float easeOutElastic (float t)
 
static float easeInOutElastic (float t)
 
static float easeInBounce (float t)
 
static float easeOutBounce (float t)
 
static float easeInOutBounce (float t)
 

Detailed Description

/brief Port of https://github.com/nicolausYes/easing-functions Each function takes a given amount of time / progress in a normalised 0 - 1 range, and returns a value 0 - 1 based on the current position along a curve. Examples of each curve can be found at https://easings.net/en

Easing curves are generally useful for creating interesting motion in animated items such as UI objects. They can also be used to create tables of values where lookups are faster than repeatedly calling functions that use sin/cos/sqrt.