JSyn      ----     Java Audio Synthesis API
SynthEnvelope
- 
Array of {Duration,Value} pairs used by EnvelopePlayer unit.
- 
Envelope segments can be queued and looped just like sample segments.
- 
Used to creates contours for controlling other units.
- 
Also may be used as a breakpoint oscillator.
myEnvData = new SynthEnvelope( double[] data =
    {  /* duration,value pairs */
        0.02, 1.0, 
        0.30, 0.3,
        0.50, 0.0 } );
Playback rate can be sped up or slowed down using "rate" port (default
1.0).
 [TOP]  [PREVIOUS] 
[NEXT]
Visit the JSyn or SoftSynth
home pages.