├── .gitignore ├── Effects ├── BiQuadFilter.cpp ├── BiQuadFilter.h ├── Effect.cpp ├── Effect.h ├── FIRFilter.cpp ├── FIRFilter.h ├── Gain.cpp └── Gain.h ├── LICENSE ├── Oscillators ├── HOWTO.txt ├── MainComponent_Detune.h ├── Oscillator.cpp ├── Oscillator.h ├── Utils.h ├── WaveTable.cpp └── WaveTable.h ├── README.md └── tapsoundlibrary.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Effects/BiQuadFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/BiQuadFilter.cpp -------------------------------------------------------------------------------- /Effects/BiQuadFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/BiQuadFilter.h -------------------------------------------------------------------------------- /Effects/Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/Effect.cpp -------------------------------------------------------------------------------- /Effects/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/Effect.h -------------------------------------------------------------------------------- /Effects/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/FIRFilter.cpp -------------------------------------------------------------------------------- /Effects/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/FIRFilter.h -------------------------------------------------------------------------------- /Effects/Gain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/Gain.cpp -------------------------------------------------------------------------------- /Effects/Gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Effects/Gain.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /Oscillators/HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Oscillators/HOWTO.txt -------------------------------------------------------------------------------- /Oscillators/MainComponent_Detune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Oscillators/MainComponent_Detune.h -------------------------------------------------------------------------------- /Oscillators/Oscillator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Oscillators/Oscillator.cpp -------------------------------------------------------------------------------- /Oscillators/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Oscillators/Oscillator.h -------------------------------------------------------------------------------- /Oscillators/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Oscillators/Utils.h -------------------------------------------------------------------------------- /Oscillators/WaveTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Oscillators/WaveTable.cpp -------------------------------------------------------------------------------- /Oscillators/WaveTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/Oscillators/WaveTable.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/README.md -------------------------------------------------------------------------------- /tapsoundlibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/TAPSoundLibrary/HEAD/tapsoundlibrary.h --------------------------------------------------------------------------------