MCPcopy Index your code
hub / github.com/processing/processing / saveFrame

Method saveFrame

core/src/processing/core/PApplet.java:3946–3953  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3944 /**
3945 */
3946 public void saveFrame() {
3947 try {
3948 g.save(savePath("screen-" + nf(frameCount, 4) + ".tif"));
3949 } catch (SecurityException se) {
3950 System.err.println("Can't use saveFrame() when running in a browser, " +
3951 "unless using a signed applet.");
3952 }
3953 }
3954
3955
3956 /**

Callers

nothing calls this directly

Calls 5

savePathMethod · 0.95
nfMethod · 0.95
insertFrameMethod · 0.95
saveMethod · 0.45
printlnMethod · 0.45

Tested by

no test coverage detected