Skip to content

Commit

Permalink
fix readme, hide PlotTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
ocramz committed Mar 17, 2018
1 parent 1343669 commit 2477c9b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ A lightweight plotting library


`plot-light` provides functionality for rendering 2D graphics. It is geared in particular towards scientific plotting, and it is called "light" because it only requires a few common Haskell dependencies.
It builds upon `blaze-svg` and `JuicyPixels` by adding type-safe combinators, geometry primitives and high-level graphing functionality.
It builds upon `blaze-svg` by adding type-safe combinators, geometry primitives and high-level graphing functionality.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion plot-light-examples/plot-light-examples.cabal
Expand Up @@ -12,7 +12,7 @@ category: Graphics
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2, GHC == 8.4.1
tested-with: GHC == 8.0.2, GHC == 8.2.2
data-dir: data
data-files: forex
heatmap-bw
Expand Down
6 changes: 3 additions & 3 deletions plot-light.cabal
@@ -1,5 +1,5 @@
name: plot-light
version: 0.3.2
version: 0.3.2.1
synopsis: A lightweight plotting library, exporting to SVG
description: This library provides drawing and plotting datastructures and functions; it is aimed in particular at scientific visualization, but it also exposes its plotting primitives and a small but general purpose 2D geometry library.

Expand All @@ -16,7 +16,7 @@ extra-source-files: README.md
extra-doc-files: doc/fig/heatmap.png
doc/fig/scatter.png
cabal-version: >=1.18
tested-with: GHC == 8.0.2, GHC == 8.4.1
tested-with: GHC == 8.0.2, GHC == 8.2.2


library
Expand All @@ -25,7 +25,7 @@ library
hs-source-dirs: src
exposed-modules: Graphics.Rendering.Plot.Light
Data.TimeSeries
Graphics.Rendering.Plot.Light.PlotTypes
-- Graphics.Rendering.Plot.Light.PlotTypes
Graphics.Rendering.Plot.Light.Internal.Geometry
other-modules: Graphics.Rendering.Plot.Light.Internal
Graphics.Rendering.Plot.Light.Internal.Layout
Expand Down
2 changes: 1 addition & 1 deletion src/Graphics/Rendering/Plot/Light/Internal.hs
Expand Up @@ -233,7 +233,7 @@ labeledTick
-> Int -- ^ Font size
-> a -- ^ Label angle
-> TextAnchor_
-> (t -> T.Text) -- ^ Label rendering
-> (t -> T.Text) -- ^ Label rendering function
-> V2 a -- ^ Label shift
-> LabeledPoint t a
-> Svg
Expand Down

0 comments on commit 2477c9b

Please sign in to comment.