fix missing bracket

This commit is contained in:
Peter 2014-04-19 16:55:25 +02:00
parent 9ccdc6c3a8
commit 8bda01a5ec

View file

@ -47,7 +47,7 @@ To form an fase-in-opacity-animation, the frame-generator could look like this:
('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)), ('logo', 'style', 'opacity', "%.4f" % easeInCubic(i, 0, 1, frames)),
) )
```easeInCubic``` is an easing-function stolen from the [jquery-easing plugin](http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js) ([easing-cheat-sheet](http://easings.net/). They take 4 parameters: ```easeInCubic``` is an easing-function stolen from the [jquery-easing plugin](http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js) ([easing-cheat-sheet](http://easings.net/)). They take 4 parameters:
- t: current time - t: current time
- b: beginning value - b: beginning value
- c: change In value - c: change In value