mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-18 03:12:40 +00:00
Add animation effects. (#9)
* latex-wheel and MonadFix for Scene. * Add Effects module. Former-commit-id: 824ebe9919e57fcc3af7c8c4d6afa0e9899564f8
This commit is contained in:
parent
9e6529682f
commit
716a42cdaf
6 changed files with 156 additions and 2 deletions
|
|
@ -39,8 +39,6 @@ dropA :: Double -> Animation -> Animation
|
|||
dropA d1 (Animation d2 f) = Animation (max 0 (d2-d1)) $
|
||||
Frame $ \d t -> unFrame f d (t+d1)
|
||||
|
||||
o # f = f o
|
||||
|
||||
-- screen width 320
|
||||
-- screen height 180
|
||||
main :: IO ()
|
||||
|
|
|
|||
Loading…
Reference in a new issue