final case classCheby(flags: Flags, amps: Float*) extends WaveFill with Product with Serializable
Fills a buffer with a series of chebyshev polynomials, which can be defined as:
cheby(n) = amplitude * cos(n * acos(x))
The first float value specifies the amplitude for n = 1, the second float value specifies the amplitude
for n = 2, and so on. To eliminate a DC offset when used as a waveshaper, the wavetable is offset so that
the center value is zero.
Fills a buffer with a series of chebyshev polynomials, which can be defined as:
The first float value specifies the amplitude for n = 1, the second float value specifies the amplitude for n = 2, and so on. To eliminate a DC offset when used as a waveshaper, the wavetable is offset so that the center value is zero.