elm/Examples/elm-yesod/elm_source/mouse.elm
Vincent Ambo bdb3a63d13 * added the elmFile QuasiQuoter for embedding .elm files
the elm-yesod example contains an example for how to use the elmFile QQ.

Note: No spaces before and after the filename!
2012-05-28 17:24:57 +02:00

9 lines
No EOL
296 B
Elm

niceBlue = rgb 0 (1/3) (2/3)
clearGreen = rgba (1/9) (8/9) (3/9) (1/2)
scene (x,y) (w,h) =
collage w h [ filled niceBlue . rotate ((x+y)/1000) $ ngon 4 100 (200,200)
, filled clearGreen $ ngon 5 30 (x,y)
]
main = lift2 scene Mouse.position Window.dimensions