( begin auto-generated from beginRecord.xml ) Opens a new file and all subsequent drawing functions are echoed to this file as well as the display window. The beginRecord() function requires two parameters, the first is the renderer and the second is the file name. This function is always us
(String renderer, String filename)
| 11132 | * @see PApplet#endRecord() |
| 11133 | */ |
| 11134 | public PGraphics beginRecord(String renderer, String filename) { |
| 11135 | filename = insertFrame(filename); |
| 11136 | PGraphics rec = createGraphics(width, height, renderer, filename); |
| 11137 | beginRecord(rec); |
| 11138 | return rec; |
| 11139 | } |
| 11140 | |
| 11141 | |
| 11142 | /** |
nothing calls this directly
no test coverage detected