euglena/src/oldfiles/snapshot.java
2016-07-10 18:33:27 -07:00

8 lines
293 B
Java

void snapshot(){
PImage c = get(0, 15, screenWidth-menu.width, screenHeight-15); //Takes the FOV
c.save("Image" + str(millis()) + ".jpg"); //Saves the FOV with Image_____.jpg, where _____ is the number of milliseconds elapsed from the program start
//print(str(millis())+"\n");
}