diff options
author | David Runge <dave@sleepmap.de> | 2017-11-30 20:22:00 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-11-30 20:22:00 +0100 |
commit | e8ef49738067efafeb6ef12d571e6cdbaf551f0f (patch) | |
tree | e49c5c169fa9ac2009c04fc624b0cdff0df8ab9d /classes | |
parent | ddbd3f2ee5baa3466f81171a29148a60f4a82e47 (diff) | |
download | zzz-e8ef49738067efafeb6ef12d571e6cdbaf551f0f.tar.gz zzz-e8ef49738067efafeb6ef12d571e6cdbaf551f0f.tar.bz2 zzz-e8ef49738067efafeb6ef12d571e6cdbaf551f0f.tar.xz zzz-e8ef49738067efafeb6ef12d571e6cdbaf551f0f.zip |
classes/ZZZ.sc: Lowering the width for \ZZZClock immensely to get even more of a dirac impulse.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/ZZZ.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/ZZZ.sc b/classes/ZZZ.sc index a9f89f7..7c9878c 100644 --- a/classes/ZZZ.sc +++ b/classes/ZZZ.sc @@ -20,7 +20,7 @@ ZZZ{ *initClass{ StartUp.add{ // adding SynthDef for clock - SynthDef(\ZZZClock, { |out = 0, freq = 2, iphase = 0, width = 0.1, mul= 1.0| + SynthDef(\ZZZClock, { |out = 0, freq = 2, iphase = 0, width = 0.001, mul= 1.0| Out.ar(out, LFPulse.ar(freq, iphase, width, mul)); }).add; // adding SynthDef for constant notes |