You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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");
}