Tree-Axis ``` Processing  


Back  
Name  

Reverse

   
Examples  
// Example by Krister Olsson

import krister.Ess.*;

AudioChannel myChannel;
Reverse myReverse;

void setup() {
  size(256,200);

  // start up Ess
  Ess.start(this);

  // load "cell.aif" into a new AudioChannel
  myChannel=new AudioChannel("cell.aif");

  // reverse first second
  myReverse=new Reverse();
  
  myReverse.filter(myChannel,0,myChannel.frames(1000));

  // play
  myChannel.play();
}

void draw() {
}

// we are done, clean up Ess

public void stop() {
  Ess.stop();
  super.stop();
}


Description   The Reverse class is used to create filters for the reversing of sample data
   
   
Constructors  
Reverse()
   
Parameters  
none  

   
Usage   Web & Application
   
 
 






   
 
Updated: Tue May 31 04:52:38 PDT 2006


 
  Questions, comments, corrections: e-mail Krister Olsson.