TouchOSC/classes/TouchOSC.sc

20 lines
370 B
Python
Raw Normal View History

2022-03-26 04:51:50 +00:00
// Class for binding to a TouchOSC interface
//
// I don't feel well enough to actually code this today so here are some notes.
// - bind a /url to a function
// - provide builtins for linear and exponential controls
// - provide builtins for X-Y and modal/radio buttons
//
//
TouchOSC {
var <>ip, <>port;
*new { | ip, port |
^super.new.init(ip, port)
}
}