MCPcopy
hub / github.com/Tonejs/Tone.js / constructor

Method constructor

Tone/component/analysis/MeterBase.ts:30–38  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

28
29 constructor(options?: Partial<MeterBaseOptions>);
30 constructor() {
31 super(optionsFromArguments(MeterBase.getDefaults(), arguments));
32
33 this.input = this.output = this._analyser = new Analyser({
34 context: this.context,
35 size: 256,
36 type: "waveform",
37 });
38 }
39
40 dispose(): this {
41 super.dispose();

Callers

nothing calls this directly

Calls 2

optionsFromArgumentsFunction · 0.90
getDefaultsMethod · 0.45

Tested by

no test coverage detected