dynamic-graph-0.1.0.13: dynamic-graph.cabal
name: dynamic-graph
version: 0.1.0.13
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.
.
See <https://github.com/adamwalker/dynamic-graph> for examples of the graphs it can produce.
.
To get started, see "Graphics.DynamicGraph.Window"
license: BSD3
license-file: LICENSE
author: Adam Walker
maintainer: adamwalker10@gmail.com
copyright: 2018 Adam Walker
category: Graphics
homepage: https://github.com/adamwalker/dynamic-graph
bug-reports: https://github.com/adamwalker/dynamic-graph/issues
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-files: shaders/line.vert, shaders/line.frag, shaders/waterfall.vert, shaders/waterfall.frag, shaders/fill_line.vert, shaders/fill_line.frag, shaders/cairo.vert, shaders/cairo.frag
source-repository head
type: git
location: https://github.com/adamwalker/dynamic-graph
library
exposed-modules:
Graphics.DynamicGraph.Line,
Graphics.DynamicGraph.Waterfall,
Graphics.DynamicGraph.Util,
Graphics.DynamicGraph.FillLine,
Graphics.DynamicGraph.Axis,
Graphics.DynamicGraph.RenderCairo,
Graphics.DynamicGraph.ColorMaps,
Graphics.DynamicGraph.Window
-- other-modules:
-- other-extensions:
build-depends:
base >=4.6 && <5,
GLFW-b >=1.4 && <4,
OpenGL >=2.9 && <3.1,
GLUtil >=0.9.1 && <0.11,
transformers >=0.3 && <0.6,
pipes >=4.1 && <4.4,
pango >=0.13 && <0.14,
cairo >=0.13 && <0.14,
colour >=2.3 && <2.4
-- hs-source-dirs:
default-language: Haskell2010
other-modules: Paths_dynamic_graph