| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Graphics.DynamicGraph.FillLine
Description
Draw and update filled in line graphs with OpenGL.
Example usage:
import Control.Monad
import Control.Monad.Trans.Either
import Control.Concurrent
import Pipes
import qualified Pipes.Prelude as P
import System.Random
import Graphics.Rendering.OpenGL
import Graphics.DynamicGraph.FillLine
import Graphics.DynamicGraph.Window
randomVect :: Producer [GLfloat] IO ()
randomVect = P.repeatM $ do
res <- replicateM 1000 randomIO
threadDelay 10000
return res
main = eitherT putStrLn return $ do
setupGLFW
lineGraph <- window 1024 480 $ fmap (for cat . (lift . )) $ renderFilledLine 1000 jet_mod
lift $ runEffect $ randomVect >-> lineGraph- renderFilledLine :: IsPixelData a => Int -> [GLfloat] -> IO (a -> IO ())
- module Graphics.DynamicGraph.ColorMaps
Documentation
Arguments
| :: IsPixelData a | |
| => Int | The number of samples in each buffer passed to the rendering function. |
| -> [GLfloat] | Color map for the vertical gradient of the fill. |
| -> IO (a -> IO ()) | The function that does the rendering. Takes an instance of |
Returns a function that renders a filled in line graph into the current OpenGL context.
All OpenGL based initialization of the rendering function (loading of shaders, etc) is performed before the function is returned.
This function must be called with an OpenGL context currently set.