4 fun void connect( UGen target ) {
7 fun void noteOn ( float note, float vel ) {}
8 fun void noteOff ( float vel ) {}
17 fun void set ( float nt, float vl, dur ln ) {
23 fun void playOn ( Player p) {
25 p.noteOn( note , vel );
29 fun void playOnAlt( Player p, float noff, float vmul ) {
30 p.noteOn( note+noff, vel*vmul );
36 class MandPlayer extends Player {
38 fun void noteOn ( float note, float vel ) {
39 std.mtof ( note ) => m.freq;
44 class FlutePlayer extends Player {
46 fun void noteOn ( float note, float vel ) {
47 std.mtof ( note ) => f.freq;