It would seem More elegant to me to store the osc
addresses in OscReceive as a dictionary instead of a
list :
a = OscReceive(port=10001, address=['/pitch',
'/amp'])
b = Sine(a[0], 0, a[1]).out()
would become
a = OscReceive(port=10001, address=['/pitch',
'/amp'])
b = Sine(a['/pitch'], 0, a['/amp']).out()
Seems easier to remember that the list index.
Original issue reported on code.google.com by leca...@gmail.com on 16 Nov 2009 at 6:06
Original issue reported on code.google.com by
leca...@gmail.com
on 16 Nov 2009 at 6:06