header

 

More links

AutoHotkey | Android | Arduino | COMM140Fractals | Grammar Checkers | Knots | A Million Dots Activity |  Processing | Processing for Scratch Users | RedBubble | Tutorials | Weather | World Time Meeting Planner | Favicon Generator.

Home > Tutorials > Processing

Processing

Processing is an open source programming language and environment for people who want to create images, animations, and interactions. Initially developed to serve as a software sketchbook and to teach fundamentals of computer programming within a visual context, Processing also has evolved into a tool for generating finished professional work. Today, tens of thousands of students, artists, designers, researchers, and hobbyists who use Processing for learning, prototyping, and production.

Processing Links

Processing Examples

Processing Introduction

Processing Books

Processing code snippets that I use

Tutorials

How to Center the Procesing Window on Screen

https://forum.processing.org/two/discussion/1283/center-window-on-screen

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
boolean centered;
void setup()
{
  size(400,400);
  centered = false;
 
}
void draw()
{
  centerWindow();
}
 
void centerWindow()
{
  if(frame != null && centered == false)
  {
    frame.setLocation(displayWidth/2-width/2,displayHeight/2-height/2);
    centered = true;
  }
}

 

 


APA citation:
Russell, R. (2020, July 17, 08:21 am). Processing.
     Retrieved March 19, 2024, from http://www.rupert.id.au/tutorials/processing/index.php

Last refreshed: March 19 2024. 01:36.23 pm

rupert dot russell at acu dot edu dot au Support Wikipedia

Creative Commons License This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License.


1579 visits since October 02, 2010