rsc3/doc-schelp/HelpSource/Classes/Pluck.schelp

55 lines
1.5 KiB
Text

class:: Pluck
summary:: A Karplus-Strong UGen
categories:: UGens>Delays
description::
A Karplus-Strong UGen
classmethods::
method:: ar
argument:: in
an excitation signal.
argument:: trig
upon a negative to positive transition, emphasis::n:: samples of the excitation signal will be fed into the delay line, where emphasis::n = delaytime * sample_rate / 2::, using a rectangular envelope (no fading).
argument:: maxdelaytime
the max delay time in seconds (initializes the internal delay buffer).
argument:: delaytime
delay time in seconds.
argument:: decaytime
time for the echoes to decay by 60 decibels. Negative times emphasize odd partials.
argument:: coef
the coef of the internal OnePole filter. Values should be between -1 and +1 (larger values will be unstable... so be careful!).
argument:: mul
argument:: add
examples::
code::
s.boot;
// excitation signal is WhiteNoise, triggered twice a second with varying OnePole coef
(
{Pluck.ar(WhiteNoise.ar(0.1), Impulse.kr(2), 440.reciprocal, 440.reciprocal, 10,
coef:MouseX.kr(-0.999, 0.999))
}.play(s)
)
s.quit;
// a group of angry fretless mandolin players
(
{
var freq, numparts;
numparts = 50;
freq = SinOsc.kr(Array.fill(numparts, {Rand(0.05, 0.2)}),
Array.fill(numparts, {Rand(0, 1.0)})).range(1000, 3000);
LeakDC.ar(
Pan2.ar(
Pluck.ar(
WhiteNoise.ar(0.1).dup(numparts),
Impulse.kr(Array.fill(numparts, {Rand(10, 12)})),
100.reciprocal, freq.reciprocal, 2, Rand(0.01, 0.2), mul: 1),
Array.fill(numparts, {Rand.new(-1.0, 1.0)}))
.sum
);
}.play(s);
)
::