(File file, String options)
| 1100 | |
| 1101 | |
| 1102 | public boolean save(File file, String options) { |
| 1103 | PrintWriter writer = PApplet.createWriter(file); |
| 1104 | boolean success = write(writer, options); |
| 1105 | writer.close(); |
| 1106 | return success; |
| 1107 | } |
| 1108 | |
| 1109 | |
| 1110 | public boolean write(PrintWriter output) { |
nothing calls this directly
no test coverage detected