| 291 | return time == 0 ? 0 : powf(2, 10 * (time / 1 - 1)) - 1 * 0.001f; |
| 292 | } |
| 293 | float expoEaseOut(float time) |
| 294 | { |
| 295 | return time == 1 ? 1 : (-powf(2, -10 * time / 1) + 1); |
| 296 | } |
| 297 | float expoEaseInOut(float time) |
| 298 | { |
| 299 | if (time == 0 || time == 1) |
no outgoing calls
no test coverage detected