MCPcopy Index your code
hub / github.com/stemkoski/stemkoski.github.com / QuadraticEaseInOut

Function QuadraticEaseInOut

Three.js/js/ThreeDebug.js:25602–25607  ·  view source on GitHub ↗
( k )

Source from the content-addressed store, hash-verified

25600 };
25601
25602 function QuadraticEaseInOut ( k ) {
25603
25604 if ( ( k *= 2 ) < 1 ) return 0.5 * k * k;
25605 return - 0.5 * ( --k * ( k - 2 ) - 1 );
25606
25607 };
25608
25609 function bind( scope, fn ) {
25610

Callers 1

ThreeDebug.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected