returns true if running on windows.
()
| 261 | * returns true if running on windows. |
| 262 | */ |
| 263 | static public boolean isWindows() { |
| 264 | //return PApplet.platform == PConstants.WINDOWS; |
| 265 | return System.getProperty("os.name").indexOf("Windows") != -1; //$NON-NLS-1$ //$NON-NLS-2$ |
| 266 | } |
| 267 | |
| 268 | |
| 269 | /** |
no outgoing calls
no test coverage detected