Adam-Assignment-04-Schotter

;

 


 // George Nee's "Schotter" (1968) 
 // http://www.medienkunstnetz.de/works/schotter/
 // Adam Ben-Dror, 09/09/2013

void setup() {
  size (500, 750);
  smooth();
  noFill();
//  rectMode(CENTER);
  noLoop(); 
}


void draw() {
 
  background (180); 
  
  float schotterSquareSize = width/24.0;
  int   nAcross = 12; 
  int   nDown   = 22;

  float xStart = 6*schotterSquareSize; 
  float xEnd = xStart + (nAcross-1)* schotterSquareSize; 

  float yStart = width/18*3;
  float yEnd = yStart + (nDown-1)* schotterSquareSize; 


  for (int i=0; i

Screen Shot 2013-09-11 at 11.59.52 PM

Comments are closed.