diff options
author | Tim Blechmann <timblech@users.sourceforge.net> | 2004-07-14 22:09:37 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:11:54 +0200 |
commit | 7efe253bff93c1214cc84ef16255af39351a7606 (patch) | |
tree | 5c009e5f5cf530d25a92fbf684ea5a3ae095a233 | |
parent | ff2ee8fd80cce2c7102799169c6e272457b011ba (diff) |
some more ugens
svn path=/trunk/externals/tb/; revision=1863
-rwxr-xr-x | sc4pd/make-files.txt | 3 | ||||
-rw-r--r-- | sc4pd/source/main.cpp | 17 |
2 files changed, 17 insertions, 3 deletions
diff --git a/sc4pd/make-files.txt b/sc4pd/make-files.txt index 2125a06..be5dcbc 100755 --- a/sc4pd/make-files.txt +++ b/sc4pd/make-files.txt @@ -3,4 +3,5 @@ SRCDIR = source SRCS= \ main.cpp Dust.cpp MantissaMask.cpp Hasher.cpp Median.cpp \ BrownNoise.cpp ClipNoise.cpp GrayNoise.cpp WhiteNoise.cpp \ - PinkNoise.cpp Dust2.cpp Crackle.cpp
\ No newline at end of file + PinkNoise.cpp Dust2.cpp Crackle.cpp Rand.cpp TRand.cpp TExpRand.cpp \ + IRand.cpp TIRand.cpp
\ No newline at end of file diff --git a/sc4pd/source/main.cpp b/sc4pd/source/main.cpp index d9198db..3ae9108 100644 --- a/sc4pd/source/main.cpp +++ b/sc4pd/source/main.cpp @@ -1,4 +1,5 @@ -/* sc4pd library initialization +/* sc4pd + library initialization Copyright (c) 2004 Tim Blechmann. @@ -51,7 +52,8 @@ void sc4pd_library_setup() post("contains: Dust(~), MantissaMask(~), Hasher(~), Median(~), " "BrownNoise(~),\n" " ClipNoise(~), GrayNoise(~), Dust2(~), WhiteNoise(~), " - "PinkNoise(~), \n Crackle(~), Rand(~)\n"); + "PinkNoise(~), \n Crackle(~), Rand(~), TRand(~), " + "TExpRand(~), IRand(~), TIRand(~)\n"); //initialize objects FLEXT_DSP_SETUP(Dust_ar); @@ -90,6 +92,17 @@ void sc4pd_library_setup() FLEXT_DSP_SETUP(Rand_ar); FLEXT_SETUP(Rand_kr); + FLEXT_DSP_SETUP(TRand_ar); + FLEXT_SETUP(TRand_kr); + + FLEXT_DSP_SETUP(TExpRand_ar); + FLEXT_SETUP(TExpRand_kr); + + FLEXT_DSP_SETUP(IRand_ar); + FLEXT_SETUP(IRand_kr); + + FLEXT_DSP_SETUP(TIRand_ar); + FLEXT_SETUP(TIRand_kr); } FLEXT_LIB_SETUP(sc4pd,sc4pd_library_setup); |