Autotel

Elevators pitch

Song made in reaper and animation generated by a processing program that displays an array of bars whose width is determined by a sine function; generating an effect of waves

The core generator was:

void draw() {
  background(bgcolor);
  displacement+=increaseRate;
  fill(0);
  for (int a=0; a<total; a++) {
    fill(random(colorandom)+colorHue,colorSaturation,colorBrightness);
    rect(a\*width/total, 0, sin(a/(range\*module)+displacement)\*(width\*(ovralWdth+random(ovralRndWdth)))/total, height);
  }
  min=min(frameRate,min);
  max=max(frameRate,max);
  deviation=max-min;
  if(started){
    saveFrame("output 3/frames######.png");
    println(frameRate+" dev: "+deviation);
  }
}