processing: Web graphic applications with Processing.

[ bsd3, graphics, library ] [ Propose Tags ]

Processing is a visual design programming language. Processing.js is the sister project of Processing designed for the web. The Haskell processing package is a web animation library with Processing.js as backend.

What is this for?

With this library you are able to write scripts that, once executed in a browser, will execute interactive visual programs.

Where can I see a running example?

An example output can be reached at http://liibe.com/experimental/rocket.html. Also, take a look at http://liibe.com/experimental/mill.html. The code of the latter is included in the source distribution (/examples/mill.hs).

How do I learn to use it?

The API reference of the library includes guidance and is complemented with code examples. Look also to the examples directory included in the source distribution. It contains some fully working examples.

The library provides different APIs (interfaces). Each one with a different philosophy.

  • Simple (Graphics.Web.Processing.Simple): An abstract interface, focusing in what you want to be displayed, but not how. The library will know how to write the processing code you need. However, you may lack some features that you can find in other interfaces.

  • Mid (Graphics.Web.Processing.Mid): More imperative feeling, with variables and commands. But also convenient and complete. This is the default interface, re-exported by Graphics.Web.Processing.

  • Basic (Graphics.Web.Processing.Basic): For people that like to do things by hand. The output processing code is predictable and you have great control over it.

The module Graphics.Web.Processing.Html helps you to create the HTML document where you will display the animation.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0.0.0, 1.0.0.1, 1.0.1.0, 1.1.0.0, 1.2.0.0, 1.2.0.1, 1.2.0.2
Dependencies base (>=4 && <5), blaze-html, containers, mainland-pretty, multiset, text, transformers [details]
License BSD-3-Clause
Author Daniel Díaz
Maintainer Daniel Díaz (dhelta.diaz `at` gmail.com)
Category Graphics
Bug tracker https://github.com/Daniel-Diaz/processing/issues
Source repo head: git clone git@github.com:Daniel-Diaz/processing.git
Uploaded by DanielDiaz at 2013-08-03T11:57:52Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 5069 total (25 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for processing-1.0.0.0

[back to package description]

Processing library

Web graphic applications with processing.js as backend.

Still in development!

Examples

Find examples of usage at the examples directory. The mill example looks like this.