8 lines
293 B
Java
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");
|
||
|
}
|