returns true if Processing is running on a Mac OS X machine.
()
| 252 | * returns true if Processing is running on a Mac OS X machine. |
| 253 | */ |
| 254 | static public boolean isMacOS() { |
| 255 | //return PApplet.platform == PConstants.MACOSX; |
| 256 | return System.getProperty("os.name").indexOf("Mac") != -1; //$NON-NLS-1$ //$NON-NLS-2$ |
| 257 | } |
| 258 | |
| 259 | |
| 260 | /** |
no outgoing calls
no test coverage detected