Return a File from inside the Processing 'lib' folder.
(String filename)
| 1886 | * Return a File from inside the Processing 'lib' folder. |
| 1887 | */ |
| 1888 | static public File getLibFile(String filename) throws IOException { |
| 1889 | return new File(Platform.getContentFile("lib"), filename); |
| 1890 | } |
| 1891 | |
| 1892 | |
| 1893 | /** |
no test coverage detected