Skip to content

Instantly share code, notes, and snippets.

View apathetic's full-sized avatar

wes hatch apathetic

View GitHub Profile
@petersalomonsen
petersalomonsen / mix.ts
Last active September 29, 2020 19:59
instrumentstemplate
import { SineOscillator } from '../synth/sineoscillator.class';
import { SawOscillator } from '../synth/sawoscillator.class';
import { Envelope } from '../synth/envelope.class';
import { StereoSignal } from "../synth/stereosignal.class";
import { notefreq } from '../synth/note';
import { Noise } from '../synth/noise.class';
import { BandPass } from '../fx/bandpass';
import { SAMPLERATE } from '../environment';
import { BiQuadFilter, FilterType, Q_BUTTERWORTH } from '../synth/biquad';
import { createInstrumentArray } from '../common/mixcommon';