Difference between revisions of "Diagrams"

From HaskellWiki
Jump to navigation Jump to search
m (Added categories)
(add)
(22 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
[[Category:Packages]]
 
[[Category:Packages]]
   
  +
[[Image:Diagrams-logo.png]]
The '''diagrams''' library provides an embedded domain-specific language (EDSL) for creating simple pictures and diagrams in Haskell
 
   
* [http://code.haskell.org/diagrams/ Homepage]
+
The [http://projects.haskell.org/diagrams diagrams framework] provides an embedded domain-specific language (EDSL) for declarative drawing.
* [http://byorgey.wordpress.com/ Blog]
 
   
  +
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 are also [https://github.com/diagrams/diagrams-lib/issues?state=open bug] [https://github.com/diagrams/diagrams-core/issues?state=open trackers] for different parts of the project.
== Download ==
 
   
  +
* [[/FAQ|Frequently asked questions]]
Either
 
  +
* [[/Install|Installation instructions]]
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/diagrams HackageDB]
 
  +
* [[/Contributing|How to contribute]]
* http://www.patch-tag.com/r/byorgey/diagrams-core/
 
  +
* [[/Projects|Projects]]: who is working on what.
* http://www.patch-tag.com/r/byorgey/diagrams-lib/
 
  +
* [[/GSoC|Google Summer of Code projects]]
* http://www.patch-tag.com/r/byorgey/diagrams-cairo/
 
   
  +
* [[/Support|Which versions of GHC and Haskell Platform are supported]]
== Inspiration ==
 
   
  +
* [[/Dev/Migrate0.7|0.6 to 0.7 migration]]: Description of API changes that may affect diagrams 0.6 code, with explanations of how to migrate to 0.7
=== Related Haskell projects ===
 
  +
* [[/Dev/Migrate1.0|0.7 to 1.0 migration]]: Description of API changes that may affect diagrams 0.7 code, with explanations of how to migrate to 1.0
* [[Applications_and_libraries/Graphics]]
 
  +
* [[/Dev/Migrate1.1|1.0 to 1.1 migration]]: Description of API changes that may affect diagrams 1.0 code, with explanations of how to migrate to 1.1
  +
* [[/Dev/Migrate1.2|1.1 to 1.2 migration]]: Description of API changes that may affect diagrams 1.1 code, with explanations of how to migrate to 1.2
  +
* [[/Dev/Migrate1.3|1.2 to 1.3 migration]]: Description of API changes that may affect diagrams 1.2 code, with explanations of how to migrate to 1.3
   
  +
* [[/Dev|Developer wiki]]: notes on wanted features, style guidelines, best practices, etc.
=== Related non-Haskell projects ===
 
   
  +
* [[/Dev/BuildStatus|Build status]] of all diagrams packages at a glance.
* [http://asymptote.sourceforge.net/ Asymptote]
 
  +
* [http://projects.haskell.org/diagrams/backend-tests/all-index.html Current test case results for backends side-by-side.]
* [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]
 
 
=== Food for thought ===
 
 
* [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 16:00, 28 January 2015


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 are also bug trackers for different parts of the project.

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