reactive-glut-0.0.3: Connects Reactive and GLUTSource codeContentsIndex
FRP.Reactive.GLUT.Adapter
Stabilityexperimental
Maintainerconal@conal.net
Description
Connect Reactive + GLUT
Synopsis
adaptSimple :: String -> Sink (UI -> Behavior Action)
adapt :: Sink (UI -> Behavior Action)
simpleInit :: String -> IO ()
data UI = UI {
mousePosition :: Behavior (Double, Double)
leftButtonPressed :: Event ()
rightButtonPressed :: Event ()
keyPressed :: Event Key
framePass :: Event ()
}
data Key
= Char Char
| SpecialKey SpecialKey
uiIntegral :: VectorSpace v TimeT => (UI -> Behavior v) -> UI -> Behavior v
Documentation
adaptSimple :: String -> Sink (UI -> Behavior Action)Source
Adapter to connect FRP.Reactive with GLUT. Uses given window title and a simple canned initialization. Or do your own initialization and then invoke adapt.
adapt :: Sink (UI -> Behavior Action)Source
Adapter to connect FRP.Reactive with GLUT. Assumes that GL/GLUT have been initialized as desired.
simpleInit :: String -> IO ()Source
Simple initialization for GL graphics
data UI Source
Simple UI type.
Constructors
UI
mousePosition :: Behavior (Double, Double)
leftButtonPressed :: Event ()
rightButtonPressed :: Event ()
keyPressed :: Event Key
framePass :: Event ()
data Key Source
Key pressed
Constructors
Char Char
SpecialKey SpecialKey
uiIntegral :: VectorSpace v TimeT => (UI -> Behavior v) -> UI -> Behavior vSource
Integral tracking frame sampling
Produced by Haddock version 2.3.0