Descriptions Page

This page is for description of some homework assignments as well as other explanations that will be needed from time to time.

Save multiple screens of a sketch

void keyPressed(){
   if(key == 's'){
      println("Saving now...");
      saveFrame("screen-####.jpg");
      println("Saving is completed.");
      }
  }