xdot 0.2.1 → 0.2.2
raw patch · 2 files changed
+7/−3 lines, 2 files
Files
- src/Graphics/XDot/Viewer.hs +2/−2
- xdot.cabal +5/−1
src/Graphics/XDot/Viewer.hs view
@@ -123,8 +123,8 @@ return $ case mn of None -> []- o -> [ (o, (x - 10, y + 10, 20, 20))- , (o, (xe - 10, ye + 10, 20, 20))+ o -> [ (o, (x - 15, y + 15, 30, 30))+ , (o, (xe - 15, ye + 15, 30, 30)) ] where drawBezier ((x1,y1):(x2,y2):(x3,y3):xys2) = do
xdot.cabal view
@@ -1,5 +1,5 @@ name: xdot-version: 0.2.1+version: 0.2.2 license: BSD3 license-file: LICENSE category: Graphs, Graphics@@ -17,6 +17,10 @@ . For an example of using this library try the accompanying @Demo.hs@ with the dot-files in @dot-examples/@.+ .+ This library was originally written as part of ghc-vis, but+ is now a seperate project, in case anyone else may have a+ use for it. tested-with: GHC == 7.4.1, GHC == 7.4.2 Extra-source-files: Demo.hs, dot-examples/*.dot