Processing
Processing copied to clipboard
Programs using Processing
Processing
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:
Getting Started
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.
Prerequisites
- Processing IDE
- A computer with OSX, Windows, Linux
Alternative:
- Kinect V1
- Kinect V2
- Arduino IDE
- Arduino board
- Atom
Installing
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.
Test a program sample:
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.
Also you can use the next IDE to build programs:
Contributing
Please read CONTRIBUTING.md for details of the code of conduct, and the process for submitting pull requests to us.
Versioning
I use SemVer for versioning.
Author
Antonio Vega Ramirez:
License
This project is licensed under The MIT License (MIT) - see the LICENSE.md file for details
The instructions to Setup the Kinect are written for Mac OS High Sierra users.