repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
examples
/
osc.ck
blob
07d6d2661e4fadc9d0950011dbc30706cad59bfb
1
// connect sine oscillator to audio output
2
sinosc s => dac;
3
4
// infinite time-loop
5
while(true)
6
{
7
// randomly set a frequency
8
std.rand2f( 30.0, 1000.0 ) => s.freq;
9
// advance time
10
100::ms => now;
11
}