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

Method ease

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

Source from the content-addressed store, hash-verified

400 }
401
402 public float ease(float t, float b, float c, float d) {
403 float s = getOvershoot();
404 return c * (t /= d) * t * ((s + 1) * t - s) + b;
405 }
406 }
407
408 /**

Callers

nothing calls this directly

Calls 1

getOvershootMethod · 0.80

Tested by

no test coverage detected