Cheby

final case class Cheby(amps: Seq[Float], normalize: Boolean, wavetable: Boolean, clear: Boolean) extends WaveFill

OSC message for filling a buffer with a series of Chebyshev polynomials. The formula of these polynomials is

OSC message for filling a buffer with a series of Chebyshev polynomials. The formula of these polynomials is

cheby(n) = amplitude * cos(n * acos(x))

To eliminate a DC offset when used as a wave-shaper, the wavetable is offset so that the center value is zero.

Value Params
amps

amplitudes for the harmonics. amplitudes for the harmonics. The first value specifies the amplitude for n = 1, the second float value specifies the amplitude for n = 2, and so on.

clear

if set, the previous content is erased, otherwise the new waveform is added to the existing content

normalize

if set, the peak amplitude of the generated waveform is normalized to 1.0

wavetable

if set, the format of the waveform is chosen to be usable by specific UGens such as such as Shaper or Osc

Companion
object
trait Serializable
trait WaveFill
trait Command
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def args: Seq[Any]
def name: String
override def readerKey: String
Definition Classes

Inherited methods

final protected def flags: Int
Inherited from
WaveFill
def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
final override def productPrefix: String
Definition Classes
Command -> Product
Inherited from
Command