processing project presentation

10
The Dummy's Guide to: Processing By Daniel “Danny” Gonzalez *Result may very *All Rights Reserve

Upload: daniel-gonzalez

Post on 01-Sep-2014

146 views

Category:

Technology


3 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Processing project presentation

The Dummy's Guide to:

ProcessingBy Daniel “Danny” Gonzalez

*Result may very*All Rights Reserve

Page 2: Processing project presentation

So What’s “Processing?”

O Think using object draw in eclipseO Program that allows the user to

create animations

Page 3: Processing project presentation

Basic layout

• setup• Sets up the programs• Initalize• Set the size of the canvas

• Draw• Self-explanitory• Where you make the animations

• Note: color follows the rbg spectrum

Page 4: Processing project presentation

Your basic ShapeO Ellipse

O (x,y,width,height)O Rect

O (x,y,width,height)O Triangle

O (x1,y1,x2,y2,x3,y3)

Page 5: Processing project presentation

“Fill” and “framed”

On Eclipse On ProcressingO FilledRect/OvalO FramedRect/Oval

O Filled black by default

O noFill()O To color in:

fill(r,g,b)

Page 6: Processing project presentation

Follows a “timeline”(in pseudo-code)

On Eclipse On processingO ObjectO Color of object

O Color of objectO object

Page 7: Processing project presentation

You can add images!O Code for it

O PImage “whatever you named it/wyni”O Wyni=loadImage(“the image”)

O Accepts: gif, jpeg, targaO Image(wyni,x,y)

O How you do itO SketchO Add FileO Select the image

Page 9: Processing project presentation
Page 10: Processing project presentation

NOW GO OUTSIDE!