MCPcopy Create free account
hub / github.com/cinder/Cinder / EaseInOutQuad

Class EaseInOutQuad

include/cinder/Easing.h:90–90  ·  view source on GitHub ↗

Easing equation for a quadratic (t^2) ease-in/out, accelerating until halfway, then decelerating. Functor edition.

Source from the content-addressed store, hash-verified

88
89//! Easing equation for a quadratic (t^2) ease-in/out, accelerating until halfway, then decelerating. Functor edition.
90struct EaseInOutQuad{ float operator()( float t ) const { return easeInOutQuad( t ); } };
91
92//! Easing equation for a quadratic (t^2) ease-out/in, decelerating until halfway, then accelerating.
93inline float easeOutInQuad( float t )

Callers 6

addCircleMethod · 0.85
updateMethod · 0.85
startTweeningMethod · 0.85
changePhaseMethod · 0.85
resetSampleMethod · 0.85
setupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected