projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Refactoring in faustexp.ml.
[Faustine.git]
/
interpretor
/
faust-0.9.47mr3
/
tools
/
faust2pd
/
examples
/
faust
/
noise2.dsp
1
declare name "noise";
2
declare version "1.0";
3
declare author "Grame";
4
declare license "BSD";
5
declare copyright "(c)GRAME 2006";
6
7
// noise generator
8
9
random = +(12345)~*(1103515245);
10
noise = random/2147483647.0;
11
12
process = noise * vslider("vol", 0, 0, 1, 0.1);