FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Topics & Contributions
   Beyond Categories
(Moderator: REAS)
   medialab / stop thinking so flat
« Previous topic | No topic »

Pages: 1 
   Author  Topic: medialab / stop thinking so flat  (Read 804 times)
Martin

122417302122417302martingomez_listsmg1ph WWW Email
medialab / stop thinking so flat
« on: Nov 23rd, 2002, 1:00pm »

// Stop Thinking So Flat
// by Martin
//
// Based on the MIT Media Lab site design by Peter Cho
//
// Lame attempt in reproducing the MIT Media Lab site
// design using Proce55ing ... or maybe not.
 
size(700,300);
background(255);
rectMode(CORNER);
noStroke();
int red;
int green;
int blue;
int x;
int y;
int laki;
int i = 0;
 
for( i = 0; i <= 400; i++ ) {
 
  red = (int) random(100,255);
  green = (int) random(0,255);  
  blue = (int) random(0,255);
  x = (int) random(0,690);
  y = (int) random(0,190);
  laki = (int) random(5,20);  
 
  rotateY(20);
 
  fill(red,green,blue);
  rect(x, y, laki, laki);
 
}
 
noFill();
 
for( i = 0; i <= 100; i++ ) {
 
  red = (int) random(100,255);
  green = (int) random(0,255);  
  blue = (int) random(0,255);
  x = (int) random(0,690);
  y = (int) random(0,190);
  laki = (int) random(5,20);  
 
  rotateY(50);
 
  stroke(red,green,blue);
  rect(x, y, laki, laki);
 
}
 
« Last Edit: Nov 24th, 2002, 11:23am by Martin »  
Martin

122417302122417302martingomez_listsmg1ph WWW Email
Re: medialab / stop thinking so flat
« Reply #1 on: Nov 24th, 2002, 11:24am »

a lil bit of this, and a lil bit of that...
 
www.instituteofmedia.com/~martin/karborn/mymind1.jpg
www.instituteofmedia.com/~martin/karborn/mymind2.jpg
www.instituteofmedia.com/~martin/karborn/mymind3.jpg
 
 
Pages: 1 

« Previous topic | No topic »