MCPcopy Index your code
hub / github.com/benfry/processing4 / endRecord

Method endRecord

core/src/processing/core/PApplet.java:10363–10369  ·  view source on GitHub ↗

Stops the recording process started by beginRecord() and closes the file. @webref output:files @webBrief Stops the recording process started by beginRecord() and closes the file @see PApplet#beginRecord(String, String)

()

Source from the content-addressed store, hash-verified

10361 * @see PApplet#beginRecord(String, String)
10362 */
10363 public void endRecord() {
10364 if (recorder != null) {
10365 recorder.endDraw();
10366 recorder.dispose();
10367 recorder = null;
10368 }
10369 }
10370
10371
10372 /**

Callers

nothing calls this directly

Calls 2

endDrawMethod · 0.45
disposeMethod · 0.45

Tested by

no test coverage detected