RedViz-0.1.0.0: a library for realtime interactive 3D visualizations
Safe HaskellNone
LanguageHaskell2010

Graphics.RedViz.Input.FRP.Yampa.AppInput

Synopsis

Documentation

parseWinInput :: SF WinInput AppInput Source #

Filter and transform SDL events into events which are relevant to our application

mousePos :: SF AppInput (Double, Double) Source #

Current mouse position

lbp :: SF AppInput (Event ()) Source #

Events that indicate left button click

lbpPos :: SF AppInput (Event (Double, Double)) Source #

Events that indicate left button click and are tagged with mouse position

lbDown :: SF AppInput Bool Source #

Is left button down

rbp :: SF AppInput (Event ()) Source #

Events that indicate right button click

rbpPos :: SF AppInput (Event (Double, Double)) Source #

Events that indicate right button click and are tagged with mouse position

rbDown :: SF AppInput Bool Source #

Is right button down