Return an InputStream for a file inside the Processing lib folder.
(String filename)
| 1894 | * Return an InputStream for a file inside the Processing lib folder. |
| 1895 | */ |
| 1896 | static public InputStream getLibStream(String filename) throws IOException { |
| 1897 | return new FileInputStream(getLibFile(filename)); |
| 1898 | } |
| 1899 | |
| 1900 | |
| 1901 | /** |