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