Changed ease function from cosine to cubic

This commit is contained in:
Phoenix Enero
2014-05-06 09:39:53 +08:00
parent 17b58ec63d
commit 1a82d308af
2 changed files with 3 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ lume.lerp(100, 200, .5) -- Returns 150
```
### lume.smooth(a, b, amount)
Similar to `lume.lerp()` but uses cosine interpolation instead of linear
Similar to `lume.lerp()` but uses cubic interpolation instead of linear
interpolation.
### lume.pingpong(x)