Posts filed under 'announcements'

File Processing

source code

text file contains:
45 123
2 345
56 34
8 3234
34 55
700 2

bene posted on April 24th, 2008    Add comment

Files for 4/22

peep
peep alpha
map

peeps code
weather code

bene posted on April 22nd, 2008    Add comment

Game Dev I only…sorry MIS people

Game Dev intro survey

skype: maryannbene

bene posted on January 25th, 2008    Add comment

Introductory Survey

Welcome to Moving Image Studio I!
Please fill out this survey so I can learn a little bit about you.

my email is maryann@vade.info

bene posted on January 22nd, 2008    Add comment

MIDTERM REVIEW

outline for the midterm exam PDF

bene posted on March 22nd, 2007    Add comment

Inspiration Links

Processing-specific Blogs
processing.org/exhibition/
processingblogs.org
createdigitalmotion: posts tagged with processing.org

Digital Media Blogs
data is nature.com
infosthetics.com
abstrakt.vade.info
futurefeeder.com

Del.icio.us bookmarks tagged with Processing:
/tag/processing
/tag/processing.org

screenshots of Processing on Flickr

visual inspiration
optical illusions
visual information in art

bene posted on March 7th, 2007    Add comment

Working with Images

bene posted on February 26th, 2007    Add comment


beneposted on Feb 23 '07:

Reminder: Assignment #3 due Sunday!


2-14

// var
  int xPos, yPos, diameter, fillColor;

void setup() {
  size(300, 300);
  setupShape();
  frameRate(15);
  background(180);
}

void draw() {
  setupShape();
  fill(fillColor);
  ellipse(xPos, yPos, diameter, diameter);
  smooth();
}

void setupShape() {
  diameter = randomInt (5, 150);
  xPos = randomInt (0+diameter/2, width-diameter/2);
  yPos = randomInt (0+diameter/2, height-diameter/2);
  fillColor = randomColor();
}

int randomInt(int minVal, int maxVal) {
  return int(random(minVal, maxVal+1));
}

color randomColor() {
  int minColorVal = 0;
  int maxColorVal = 255;
  color randColor;  

  return color( randomInt(minColorVal, maxColorVal),     // Red
                randomInt(minColorVal, maxColorVal),     // Green
                randomInt(minColorVal, maxColorVal),     // Blue
                randomInt(minColorVal, maxColorVal/2)  );  // Alpha
}

bene posted on February 14th, 2007    Add comment

First two sketches

Click screenshot to view applet and download code:
Demo1 screenshot     Demo2 screenshot

bene posted on January 24th, 2007    Add comment

Previous Posts


Pages

Calendar

January 2009
M T W T F S S
« May    
 1234
567891011
12131415161718
19202122232425
262728293031  

Posts by Month

Posts by Category