packages feed

dynamic-graph 0.1.0.7 → 0.1.0.8

raw patch · 5 files changed

+13/−5 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Graphics/DynamicGraph/FillLine.hs view
@@ -23,7 +23,9 @@ >     return res >  > main = eitherT putStrLn return $ do->     setupGLFW+>     res <- lift setupGLFW+>     unless res (left "Unable to initilize GLFW")+>      >     lineGraph  <- window 1024 480 $ pipeify <$> renderFilledLine 1000 jet_mod >  >     lift $ runEffect $ randomVect >-> lineGraph
Graphics/DynamicGraph/Line.hs view
@@ -25,7 +25,9 @@ >     return res >  > main = eitherT putStrLn return $ do->     setupGLFW+>     res <- lift setupGLFW+>     unless res (left "Unable to initilize GLFW")+>      >     lineGraph <- window 1024 480 $ pipeify <$> renderLine 1000 1024 >  >     lift $ runEffect $ randomVect >-> lineGraph
Graphics/DynamicGraph/Waterfall.hs view
@@ -22,7 +22,9 @@ >     return res >  > main = eitherT putStrLn return $ do->     setupGLFW+>     res <- lift setupGLFW+>     unless res (left "Unable to initilize GLFW")+>      >     waterfall <- window 1024 480 $ renderWaterfall 1000 1000 jet_mod >  >     lift $ runEffect $ randomVect >-> waterfall
Graphics/DynamicGraph/Window.hs view
@@ -22,7 +22,9 @@ >     return res >  > main = eitherT putStrLn return $ do->     setupGLFW+>     res <- lift setupGLFW+>     unless res (left "Unable to initilize GLFW")+> >     waterfall <- window 1024 480 $ renderWaterfall 1000 1000 jet_mod >  >     lift $ runEffect $ randomVect >-> waterfall
dynamic-graph.cabal view
@@ -1,5 +1,5 @@ name:                dynamic-graph-version:             0.1.0.7+version:             0.1.0.8 synopsis:            Draw and update graphs in real time with OpenGL description:              Draw and update graphs in real time with OpenGL. Suitable for displaying large amounts of frequently changing data. Line graphs and waterfall plots are supported, as well as axis drawing.