(float t, float b, float c, float d)
| 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 | /** |
nothing calls this directly
no test coverage detected