Processing
Processing: a language, a library, a development platform
Overview: Processing Development Environment (PDE)


Last updated


Last updated
int xPos;
void setup() {
size(800, 400);
xPos = 0;
}
void draw() {
background(100,50,255);
fill(100, 255, 255);//cyan
rect( (xPos += 5)% width, 50, 50,50);
textSize( 30);
text("Example of using java processing", 100,200);
}