Processing Programming Language Article Index for
Processing
Website Links For
Processing
 

Information About

Processing Programming Language




  paradigm Object-oriented
  year 2001
  designers Ben Fry and Casey Reas
  typing strong
  influenced By Design by Numbers
  operating System Cross-platform
  license GPL and LGPL
  website processingorg


Processing is an Open Source project initiated by Casey Reas and Benjamin Fry , formerly of the Aesthetics and Computation Group at the MIT Media Lab . It is "a Programming Language and Integrated Development Environment (IDE) built for the electronic arts and visual design communities", which aims to teach the basics of Computer Programming in a visual context, and to serve as the foundation for electronic sketchbooks. One of the stated aims of Processing is to act as a tool to get non-programmers started with programming, through the instant gratification of visual feedback. It is a language that builds on the graphical side of the Java Programming Language , simplifying features and creating a few new ones.


FEATURES

Processing includes a "sketchbook", a minimal alternative to an IDE for organizing projects.

When programming in Processing all classes defined will be treated as inner classes when the code is translated into pure Java before compiling. This means that the use of static variables and methods in classes is prohibited unless you explicitly tell Processing that you want to code in pure Java mode.


Hello World

println("Hello World!");

While this is a valid Hello World program, the following code is a better example of the look and feel of the Processing language.

PFont font = loadFont("myfont.vlw");
textFont(font,20);
text("Hello World!", 30,50);


RELATED PROJECTS

Processing has spawned another project, Wiring , which uses the Processing IDE together with a simplified version of the C Programming Language as a way to teach artists how to program Microcontroller s. There are now two separate hardware projects, Wiring and Arduino , using the Wiring environment and language. Another spin-off project, Mobile Processing by Francis Li, allows software written using the Processing programming language and environment to run on Java powered mobile devices.


AWARDS

In 2005 Reas and Fry won the prestigious Golden Nica award from Ars Electronica in its Net Vision category for their work on Processing.


LICENSE

The IDE is licensed under the GNU General Public License .

Processing's 'core' libraries, the code that is included in exported applications and applets, is licensed under the GNU Lesser General Public License , allowing the programmer to release their original code with their license of choice.


SEE ALSO



EXTERNAL LINKS

  • http://www.processing.org/

  • http://www.processinghacks.com/

  • http://www.processingblogs.org/