├── .gitignore ├── GFDN_Plugin.jucer ├── README.md ├── Source ├── .DS_Store ├── CoupledMixingMatrix.cpp ├── CoupledMixingMatrix.h ├── DelayLine.cpp ├── DelayLine.h ├── FDN.cpp ├── FDN.h ├── FIRFilter.cpp ├── FIRFilter.h ├── GFDN.cpp ├── GFDN.h ├── MixingMatrix.cpp ├── MixingMatrix.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── RoomEditor.cpp ├── RoomEditor.h ├── ShelfFilter.cpp └── ShelfFilter.h └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | Builds/ 2 | -------------------------------------------------------------------------------- /GFDN_Plugin.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/GFDN_Plugin.jucer -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/README.md -------------------------------------------------------------------------------- /Source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/.DS_Store -------------------------------------------------------------------------------- /Source/CoupledMixingMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/CoupledMixingMatrix.cpp -------------------------------------------------------------------------------- /Source/CoupledMixingMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/CoupledMixingMatrix.h -------------------------------------------------------------------------------- /Source/DelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/DelayLine.cpp -------------------------------------------------------------------------------- /Source/DelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/DelayLine.h -------------------------------------------------------------------------------- /Source/FDN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/FDN.cpp -------------------------------------------------------------------------------- /Source/FDN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/FDN.h -------------------------------------------------------------------------------- /Source/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/FIRFilter.cpp -------------------------------------------------------------------------------- /Source/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/FIRFilter.h -------------------------------------------------------------------------------- /Source/GFDN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/GFDN.cpp -------------------------------------------------------------------------------- /Source/GFDN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/GFDN.h -------------------------------------------------------------------------------- /Source/MixingMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/MixingMatrix.cpp -------------------------------------------------------------------------------- /Source/MixingMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/MixingMatrix.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/RoomEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/RoomEditor.cpp -------------------------------------------------------------------------------- /Source/RoomEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/RoomEditor.h -------------------------------------------------------------------------------- /Source/ShelfFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/ShelfFilter.cpp -------------------------------------------------------------------------------- /Source/ShelfFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/Source/ShelfFilter.h -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchidas/GFDN/HEAD/screenshot.png --------------------------------------------------------------------------------