// Gravity2019ACommands is a tab in sketch Gravity2019A. // See comments for Gravity2019A.pde. This source file // handles command interpretation from KeyPressed or OSC // networked commands. void keyPressed() { interpretKey(key, keyCode); } // interpretKey can interpret single-character key commands // from keyPressed() or a single-char OSC message. void interpretKey(char key, int keyCode) { } // interpretString can interpret multiple-character key commands // from keyPressed() or a multiple-char OSC message. // cmd is the command, arguments can be null or 0-length // for commands with no arguments. void interpretString(String cmd, Object [] arguments) { }