MCPcopy Create free account
hub / github.com/LaVache-FR/AnimationUtil / ease

Method ease

fr/lavache/anime/Easing.java:420–423  ·  view source on GitHub ↗
(float t, float b, float c, float d)

Source from the content-addressed store, hash-verified

418 }
419
420 public float ease(float t, float b, float c, float d) {
421 float s = getOvershoot();
422 return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
423 }
424 }
425
426 /**

Callers

nothing calls this directly

Calls 1

getOvershootMethod · 0.80

Tested by

no test coverage detected