Possible bug in chuck 1.3.5.0, beta 7, win32
25 Feb
2015
25 Feb
'15
11:01 p.m.
/* Possible bug in chuck 1.3.5.0, beta 7, win32 the following is typical osc out -- see examples/osc/s.ck. The issue is that I want to simply send one packet, not a continuoue stream of data. If I remove the while loop, chuck crashes. If I break out of the while loop (uncomment the break below), chuck crashes. If I use any other block (if statement, or just braces with no leading clause), chuck crashes. Can someone explain this behavior; it makes no sense to me!!! */ "localhost" => string hostname; 9999 => int port; OscOut xmit; xmit.dest( hostname,port); while (1) { xmit.start( "/input/gain" ); xmit.add (2.2); xmit.send(); //break; 1::ms => now; } // while
3549
Age (days ago)
3549
Last active (days ago)
0 comments
1 participants
participants (1)
-
Rich Caloggero