lick icon indicating copy to clipboard operation
lick copied to clipboard

Use OscIn, OscOut instead of OscSend, OscRecv

Open heuermh opened this issue 3 years ago • 0 comments

https://github.com/ccrma/chuck/blob/1a9e7e7ab16010038b78cc4936fe7ee4a7c49bbd/notes/VERSIONS#L206

$ find . -name "*.ck" | xargs grep "OscSend"
./examples/leapMotionOscSend.ck:OscSend send;
./lick/osc/ControlOscServer.ck:    OscSend client;
./lick/osc/SooperLooperOsc.ck:    OscSend engine;
./lick/osc/IanniXOsc.ck:    OscSend client;
./lick/osc/TouchOscServer.ck:    OscSend client;
./lick/osc/EuclidOsc.ck:    OscSend client;
./lick/device/Monome.ck:    OscSend engine;

$ find . -name "*.ck" | xargs grep "OscRecv"
./lick/osc/ControlOscServer.ck:    OscRecv @ server;
./lick/osc/ControlOscServer.ck:    OscRecv server;
./lick/osc/SooperLooperOsc.ck:    OscRecv client;
./lick/osc/IanniXOsc.ck:    OscRecv @ server;
./lick/osc/IanniXOsc.ck:    OscRecv server;
./lick/osc/TouchOscServer.ck:    OscRecv @ server;
./lick/osc/TouchOscServer.ck:    OscRecv server;
./lick/osc/LeapMotionOsc.ck:    OscRecv @ server;
./lick/osc/LeapMotionOsc.ck:    OscRecv server;
./lick/osc/EuclidOsc.ck:    OscRecv @ server;
./lick/osc/EuclidOsc.ck:    OscRecv server;
./lick/device/Monome.ck:    OscRecv client;

heuermh avatar May 24 '21 22:05 heuermh