Difference between revisions of "Diagrams"

From HaskellWiki
Jump to navigation Jump to search
m (fix migration page link)
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  +
[[Category:Graphics]]
The '''diagrams''' library provides an embedded domain-specific language (EDSL) for creating simple pictures and diagrams in Haskell
 
  +
[[Category:Libraries]]
  +
[[Category:Packages]]
   
  +
[[Image:Diagrams-logo.png]]
* [http://code.haskell.org/diagrams/ Homepage]
 
* [http://byorgey.wordpress.com/ Blog]
 
   
 
The [http://projects.haskell.org/diagrams diagrams framework] provides an embedded domain-specific language (EDSL) for declarative drawing.
== Download ==
 
   
  +
This is the diagrams wiki, for collecting tips and tricks, examples, information about related projects, and any other related information. If you are looking for more structured documentation (tutorial, user manual, API reference), see the [http://projects.haskell.org/diagrams diagrams web page]. There is also a [http://code.google.com/p/diagrams/issues/list bug tracker].
Either
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/diagrams HackageDB]
 
* http://www.patch-tag.com/r/byorgey/diagrams-core/
 
* http://www.patch-tag.com/r/byorgey/diagrams-lib/
 
* http://www.patch-tag.com/r/byorgey/diagrams-cairo/
 
   
  +
* [[/FAQ|Frequently asked questions]]
== Inspiration ==
 
  +
* [[/Install|Installation instructions]]
  +
* [[/Contributing|How to contribute]]
  +
* [[/Projects|Projects]]: who is working on what.
   
  +
* [[/GHC7.6|Current status of diagrams and GHC 7.6]]
=== Related Haskell projects ===
 
* [[Applications_and_libraries/Graphics]]
 
   
  +
* [[/Dev/Migrate0.6|0.5 to 0.6 migration]]: Description of API changes that may affect diagrams 0.5 code, with explanations of how to migrate to 0.6
=== Related non-Haskell projects ===
 
   
  +
* [[/Dev|Developer wiki]]: notes on wanted features, style guidelines, best practices, etc.
* [http://asymptote.sourceforge.net/ Asymptote]
 
* [http://had.co.nz/ggplot2/ ggplot2]
 
* [http://inkscape.sourceforge.net/ Inkscape]
 
* [http://lib2geom.sourceforge.net/ lib2geom]
 
* [http://www.tug.org/metapost.html MetaPost]
 
* [http://pyx.sourceforge.net/ Pyx]
 
* [http://www.texample.net/tikz/examples/ TikZ]
 
   
  +
* [[/Dev/BuildStatus|Build status]] of all diagrams packages at a glance.
=== Food for thought ===
 
  +
* [http://projects.haskell.org/diagrams/backend-tests/all-index.html Current test case results for backends side-by-side.]
 
* [http://www.adobe.com/devnet/pdf/pdf_reference.html PDF reference]
 
* [http://local.wasp.uwa.edu.au/~pbourke/geometry/supershape/ supershape]
 
* [http://www.jroller.com/aalmiray/entry/jsilhouette_0_3_released symbols]
 
* [http://www.w3.org/TR/SVG11/ SVG reference]
 
* [http://www.adobe.com/devnet/swf/pdf/swf_file_format_spec_v10.pdf SWF reference]
 

Revision as of 19:29, 11 December 2012


Diagrams-logo.png

The diagrams framework provides an embedded domain-specific language (EDSL) for declarative drawing.

This is the diagrams wiki, for collecting tips and tricks, examples, information about related projects, and any other related information. If you are looking for more structured documentation (tutorial, user manual, API reference), see the diagrams web page. There is also a bug tracker.

  • 0.5 to 0.6 migration: Description of API changes that may affect diagrams 0.5 code, with explanations of how to migrate to 0.6
  • Developer wiki: notes on wanted features, style guidelines, best practices, etc.