Processing is a flexible software sketchbook and a language for learning how to code within the context of the visual arts. Since 2001, Processing has promoted software literacy within the visual arts and visual literacy within technology. There are tens of thousands of students, artists, designers, researchers, and hobbyists who use Processing for learning and prototyping.
For more information check Processing.org
This repository contains Processing programs for different applications, change of branch depending of your currently version:
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
- Processing IDE
- A computer with OSX, Windows, Linux
Alternative:
- Kinect V1
- Kinect V2
- Arduino IDE
- Arduino board
- Atom
Install the last stable version of Processing IDE, you can download it from this page:
For OSX you just need to unzip the folder and paste the App in the applications folder.
Open Processing IDE and upload the next example:
void setup() {
size(480, 120); //Create a window of 480*120
}
void draw() {
if (mousePressed) {
fill(0);
} else {
fill(255);
}
ellipse(mouseX, mouseY, 80, 80); //If we pressed the mouse a Ellipse will be draw
}
This is one simple example of how to draw a Ellipse in the sketch window.
Please read CONTRIBUTING.md for details of the code of conduct, and the process for submitting pull requests to us.
I use SemVer for versioning.
Antonio Vega Ramirez:
This project is licensed under The MIT License (MIT) - see the LICENSE.md file for details