heuermh / lick

LiCK, Library for ChucK
GNU General Public License v3.0
147 stars 21 forks source link

Use OscIn, OscOut instead of OscSend, OscRecv #38

Open heuermh opened 3 years ago

heuermh commented 3 years ago

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;