(File file, String options)
| 1572 | |
| 1573 | |
| 1574 | public boolean save(File file, String options) { |
| 1575 | PrintWriter writer = PApplet.createWriter(file); |
| 1576 | boolean success = write(writer, options); |
| 1577 | writer.close(); |
| 1578 | return success; |
| 1579 | } |
| 1580 | |
| 1581 | |
| 1582 | public boolean write(PrintWriter output) { |
nothing calls this directly
no test coverage detected