why should you care about processing?

60
Why should you care about Processing?

Upload: jamie-matthews

Post on 16-Apr-2017

3.414 views

Category:

Technology


0 download

TRANSCRIPT

Why should

you care about

Processing?

1. What is it?

2. How does it work?

3. Why should I care?

1. What is it?

2. How does it work?

3. Why should I care?

Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is an alternative to proprietary software tools in the same domain.

Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is an alternative to proprietary software tools in the same domain.

Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is an alternative to proprietary software tools in the same domain.

Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is an alternative to proprietary software tools in the same domain.

Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is an alternative to proprietary software tools in the same domain.

Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is an alternative to proprietary software tools in the same domain.

1. What is it?

2. How does it work?

3. Why should I care?

Code goesin here

Code goesin here

Code goesin here

Run

(magic happens)

Cool stuff comesout here

- Complexity

+ Big standard library for drawing

+ Lots of user-contributedlibraries for other things

Based on Java- Complexity

+ Big standard library for drawing

+ Lots of user-contributedlibraries for other things

Hello, world (Java)public class Hello{ public static void main (String args[]) { System.out.println("Hello, world!"); }}

> javac Hello.java> java Hello> Hello, world!

> javac Hello.java> java Hello> Hello, world!

Hello, world (Processing)public class Hello{ public static void main (String args[]) { System.out.println("Hello, world!"); }}

public class Hello{ public static void main (String args[]) { System.out.println("Hello, world!"); }}

> javac Hello.java> java Hello> Hello, world!

Hello, world (Processing)

Hello, world (Processing)

Hello, world v.2

ellipse (50, 50, 70, 70);

Shape primitives (2D)point (x, y);

line (x1, y1, x2, y2);

rect (x, y, width, height);

ellipse (x, y, width, height);

Attributessize(500,500);

background(255);

stroke(255,0,0);

fill(255,0,0,50);

strokeWeight(10);

smooth();

ellipse (width/2, height/2, 400, 400);

setup() and draw()void setup(){ // This code gets executed once, // at the start.}

void draw(){ // This code gets executed over and // over again.}

Circlesvoid setup(){ size (500,500); background (255); smooth (); noFill (); }

void draw(){ float x = random (width); float y = random (height); float diameter = random (50); ellipse (x, y, diameter, diameter);}

Circles

processing.org/reference

1. What is it?

2. How does it work?

3. Why should I care?

Philosophy

Philosophy

“Postmodern Philosophy Lulz #04 - Marshall McLuhan & A Cat With

Cheese On Its Face”

(with lolcats)

“What hackers and painters have in common

is that they’re both makers. Along with

composers, architects, and writers, what hackers and painters are trying to do is make good things.”

Paul Graham

“Some artists work in video, some artists work as painters, some artists work with physical materials.

“Software is just another medium to work with. You can express yourself and you can communicate through software the same way you can through these more traditional media.”

Casey Reas

www.davincisketches.com

?

Open source projects?

Personal projects?

etc.

Learning

WARNING:CONTAINS FLASHING IMAGES

Prototyping

processing.org/reference

processing.org

flickr.com/groups/processingprocessingblogs.org

FIN.www.j4mie.org

Robert Hodginflight404.com

Robert Hodginflight404.com

Robert Hodginflight404.com

Jared Tarbellcomplexification.net

Jared Tarbellcomplexification.net

Jared Tarbellcomplexification.net

Syngolaflickr.com/syngola

Syngolaflickr.com/syngola

David Bollingerdavebollinger.com

David Bollingerdavebollinger.com

David Bollingerdavebollinger.com

David Bollingerdavebollinger.com

Ryan Alexanderonecm.com

Ryan Alexanderonecm.com

Ryan Alexanderonecm.com