Skip to content

Commit

Permalink
minor things
Browse files Browse the repository at this point in the history
  • Loading branch information
LFSaw committed Oct 16, 2013
1 parent 24e9121 commit 644a887
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion source/DEINDUGens/sc/DiodeRingMod.scd
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,32 @@ Ndef(\tiickle).edit
s.reboot

Ndef(\tiickle, {
DiodeRingMod.ar(SinOsc.ar(3000 * ([1, 1.1, 1.2] * SinOsc.ar(100).range(1, 2))), SinOsc.ar(100 * [0.75, 1, 0.5])).sum * 0.2 * LFPulse.ar(10.3, 0, 0.04) * 0.1}).play
}).play






Ndef(\tiickle, {
var index = 0;
Bend({ |original|
[original, original.isNumber, index].postln;
if(original.isNumber) {
original = NamedControl.kr("bend_"++index, original);
index = index + 1;
};
original;
}, {
DiodeRingMod.ar(SinOsc.ar(3000 * ([1, 1.1, 1.2] *
SinOsc.ar(100).range(1, 2))), SinOsc.ar(100 * [0.75, 1, 0.5])).sum * 0.2 * LFPulse.ar(10.3, 0, 0.04) * 0.1
})
})


Ndef(\tiickle).edit





Expand Down

0 comments on commit 644a887

Please sign in to comment.