File Processing
text file contains:
45 123
2 345
56 34
8 3234
34 55
700 2
bene posted on April 24th, 2008 Add comment
text file contains:
45 123
2 345
56 34
8 3234
34 55
700 2
bene posted on April 24th, 2008 Add comment
bene posted on April 22nd, 2008 Add comment
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
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
Reminder: Assignment #3 due Sunday!
// 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
Click screenshot to view applet and download code:
bene posted on January 24th, 2007 Add comment
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « May | ||||||
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 | |