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

Method endRecord

core/src/processing/core/PApplet.java:11162–11168  ·  view source on GitHub ↗

( begin auto-generated from endRecord.xml ) Stops the recording process started by beginRecord() and closes the file. ( end auto-generated ) @webref output:files @see PApplet#beginRecord(String, String)

()

Source from the content-addressed store, hash-verified

11160 * @see PApplet#beginRecord(String, String)
11161 */
11162 public void endRecord() {
11163 if (recorder != null) {
11164 recorder.endDraw();
11165 recorder.dispose();
11166 recorder = null;
11167 }
11168 }
11169
11170
11171 /**

Callers

nothing calls this directly

Calls 2

endDrawMethod · 0.45
disposeMethod · 0.45

Tested by

no test coverage detected