├── .gitignore ├── CHANGELOG.md ├── LICENSE-GPLv3.txt ├── LICENSE-dist.md ├── LICENSE.md ├── Makefile ├── README.md ├── docs ├── MIDIThingV2.md ├── Muxlicer.md ├── Oneiroi.md └── img │ ├── MidiThingV2.png │ ├── MuxlicerIOMode.png │ ├── MuxlicersChained.png │ ├── Oneiroi.png │ ├── UpdateRate.png │ ├── UpdateRatesScope.png │ └── VoltageRange.png ├── plugin.json ├── res ├── SpringReverbIR.f32 ├── components │ ├── BananutBlack.svg │ ├── BananutRed.svg │ ├── BefacoButton_0.svg │ ├── BefacoButton_1.svg │ ├── BefacoSlidePotHandleSmall.svg │ ├── BefacoSlidePotSmall.svg │ ├── BefacoSwitchHoriz_0.svg │ ├── BefacoSwitchHoriz_1.svg │ ├── BefacoSwitchHoriz_2.svg │ ├── BefacoTinyKnobBlack_bg.svg │ ├── BefacoTinyKnobDarkGrey_bg.svg │ ├── BefacoTinyKnobLightGrey_bg.svg │ ├── BefacoTinyKnobRed_bg.svg │ ├── BefacoTinyPointWhite.svg │ ├── CKSSThree_bg.svg │ ├── CKSSThree_fg.svg │ ├── CrossfaderBackground.svg │ ├── CrossfaderHandle.svg │ ├── Davies1900hBlack.svg │ ├── Davies1900hDarkGrey.svg │ ├── Davies1900hDarkGrey_bg.svg │ ├── Davies1900hLargeGrey.svg │ ├── Davies1900hLargeGrey_bg.svg │ ├── Davies1900hLargeLightGrey.svg │ ├── Davies1900hLargeLightGrey_bg.svg │ ├── Davies1900hLightGrey.svg │ ├── Davies1900hLightGrey_bg.svg │ ├── Davies1900hWhiteEndless.svg │ ├── Davies1900hWhiteEndless_bg.svg │ ├── Knurlie.svg │ ├── SwitchNarrowHoriz_0.svg │ ├── SwitchNarrowHoriz_1.svg │ ├── SwitchNarrow_0.svg │ ├── SwitchNarrow_1.svg │ ├── SwitchNarrow_2.svg │ ├── SwitchTallVert_bg.svg │ ├── SwitchTallVert_fg.svg │ ├── SwitchWideHoriz_bg.svg │ ├── SwitchWideHoriz_fg.svg │ └── VCVBezelBig.svg ├── fonts │ ├── MISO-info.txt │ ├── OFL.txt │ ├── Segment7Standard.otf │ └── miso.otf └── panels │ ├── ABC.svg │ ├── ADSR.svg │ ├── Atte.svg │ ├── AxBC.svg │ ├── Bandit.svg │ ├── Burst.svg │ ├── Bypass.svg │ ├── ChoppingKinky.svg │ ├── DualAtenuverter.svg │ ├── EvenVCO.svg │ ├── HexmixVCA.svg │ ├── Kickall.svg │ ├── Mex.svg │ ├── MidiThing.svg │ ├── Mixer.svg │ ├── Mixer2.svg │ ├── Morphader.svg │ ├── MotionMTR.svg │ ├── MuDi.svg │ ├── Muxlicer.svg │ ├── NoisePlethora.svg │ ├── Octaves.svg │ ├── Percall.svg │ ├── PonyVCO.svg │ ├── Rampage.svg │ ├── STMix.svg │ ├── SamplingModulator.svg │ ├── Slew.svg │ ├── SlewLimiter.svg │ ├── SpringReverb.svg │ ├── StereoStrip.svg │ └── Voltio.svg └── src ├── ABC.cpp ├── ADSR.cpp ├── Atte.cpp ├── AxBC.cpp ├── Bandit.cpp ├── Burst.cpp ├── Bypass.cpp ├── ChoppingKinky.cpp ├── ChowDSP.hpp ├── DualAtenuverter.cpp ├── EvenVCO.cpp ├── HexmixVCA.cpp ├── Kickall.cpp ├── MidiThing.cpp ├── Mixer.cpp ├── Mixer2.cpp ├── Morphader.cpp ├── MotionMTR.cpp ├── MuDi.cpp ├── Muxlicer.cpp ├── NoisePlethora.cpp ├── Octaves.cpp ├── Percall.cpp ├── PonyVCO.cpp ├── Rampage.cpp ├── STMix.cpp ├── SamplingModulator.cpp ├── Slew.cpp ├── SlewLimiter.cpp ├── SpringReverb.cpp ├── StereoStrip.cpp ├── Voltio.cpp ├── noise-plethora ├── LICENSE.md ├── README.md ├── plugins │ ├── Banks.cpp │ ├── Banks.hpp │ ├── Banks_Def.hpp │ ├── NoisePlethoraPlugin.hpp │ ├── P_Atari.hpp │ ├── P_BasuraTotal.hpp │ ├── P_CrossModRing.hpp │ ├── P_FibonacciCluster.hpp │ ├── P_PrimeCluster.hpp │ ├── P_PrimeCnoise.hpp │ ├── P_Rwalk_BitCrushPW.hpp │ ├── P_Rwalk_LFree.hpp │ ├── P_Rwalk_SineFMFlange.hpp │ ├── P_S_H.hpp │ ├── P_TeensyAlt.hpp │ ├── P_TestPlugin.hpp │ ├── P_TriFMcluster.hpp │ ├── P_WalkingFilomena.hpp │ ├── P_WhiteNoise.hpp │ ├── P_XModRingSine.hpp │ ├── P_arrayOnTheRocks.hpp │ ├── P_basurilla.hpp │ ├── P_clusterSaw.hpp │ ├── P_crCluster2.hpp │ ├── P_existencelsPain.hpp │ ├── P_grainGlitch.hpp │ ├── P_grainGlitchII.hpp │ ├── P_grainGlitchIII.hpp │ ├── P_partialCluster.hpp │ ├── P_phasingCluster.hpp │ ├── P_pwCluster.hpp │ ├── P_radioOhNo.hpp │ ├── P_resonoise.hpp │ ├── P_satanWorkout.hpp │ ├── P_sineFMcluster.hpp │ ├── P_whoKnows.hpp │ ├── P_xModRingSqr.hpp │ └── ProgramSelector.hpp ├── teensy-audio-device.png ├── teensy-gui.png └── teensy │ ├── TeensyAudioReplacements.hpp │ ├── audio_core.hpp │ ├── dspinst.h │ ├── effect_bitcrusher.cpp │ ├── effect_bitcrusher.h │ ├── effect_combine.cpp │ ├── effect_combine.hpp │ ├── effect_flange.cpp │ ├── effect_flange.h │ ├── effect_freeverb.cpp │ ├── effect_freeverb.hpp │ ├── effect_granular.cpp │ ├── effect_granular.hpp │ ├── effect_multiply.cpp │ ├── effect_multiply.h │ ├── effect_wavefolder.cpp │ ├── effect_wavefolder.hpp │ ├── filter_variable.cpp │ ├── filter_variable.hpp │ ├── mixer.hpp │ ├── synth_dc.hpp │ ├── synth_pinknoise.cpp │ ├── synth_pinknoise.hpp │ ├── synth_pwm.cpp │ ├── synth_pwm.hpp │ ├── synth_sine.hpp │ ├── synth_waveform.hpp │ ├── synth_whitenoise.cpp │ └── synth_whitenoise.hpp ├── plugin.cpp └── plugin.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE-GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/LICENSE-GPLv3.txt -------------------------------------------------------------------------------- /LICENSE-dist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/LICENSE-dist.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/README.md -------------------------------------------------------------------------------- /docs/MIDIThingV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/MIDIThingV2.md -------------------------------------------------------------------------------- /docs/Muxlicer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/Muxlicer.md -------------------------------------------------------------------------------- /docs/Oneiroi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/Oneiroi.md -------------------------------------------------------------------------------- /docs/img/MidiThingV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/img/MidiThingV2.png -------------------------------------------------------------------------------- /docs/img/MuxlicerIOMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/img/MuxlicerIOMode.png -------------------------------------------------------------------------------- /docs/img/MuxlicersChained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/img/MuxlicersChained.png -------------------------------------------------------------------------------- /docs/img/Oneiroi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/img/Oneiroi.png -------------------------------------------------------------------------------- /docs/img/UpdateRate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/img/UpdateRate.png -------------------------------------------------------------------------------- /docs/img/UpdateRatesScope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/img/UpdateRatesScope.png -------------------------------------------------------------------------------- /docs/img/VoltageRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/docs/img/VoltageRange.png -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/plugin.json -------------------------------------------------------------------------------- /res/SpringReverbIR.f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/SpringReverbIR.f32 -------------------------------------------------------------------------------- /res/components/BananutBlack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BananutBlack.svg -------------------------------------------------------------------------------- /res/components/BananutRed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BananutRed.svg -------------------------------------------------------------------------------- /res/components/BefacoButton_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoButton_0.svg -------------------------------------------------------------------------------- /res/components/BefacoButton_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoButton_1.svg -------------------------------------------------------------------------------- /res/components/BefacoSlidePotHandleSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoSlidePotHandleSmall.svg -------------------------------------------------------------------------------- /res/components/BefacoSlidePotSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoSlidePotSmall.svg -------------------------------------------------------------------------------- /res/components/BefacoSwitchHoriz_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoSwitchHoriz_0.svg -------------------------------------------------------------------------------- /res/components/BefacoSwitchHoriz_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoSwitchHoriz_1.svg -------------------------------------------------------------------------------- /res/components/BefacoSwitchHoriz_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoSwitchHoriz_2.svg -------------------------------------------------------------------------------- /res/components/BefacoTinyKnobBlack_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoTinyKnobBlack_bg.svg -------------------------------------------------------------------------------- /res/components/BefacoTinyKnobDarkGrey_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoTinyKnobDarkGrey_bg.svg -------------------------------------------------------------------------------- /res/components/BefacoTinyKnobLightGrey_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoTinyKnobLightGrey_bg.svg -------------------------------------------------------------------------------- /res/components/BefacoTinyKnobRed_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoTinyKnobRed_bg.svg -------------------------------------------------------------------------------- /res/components/BefacoTinyPointWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/BefacoTinyPointWhite.svg -------------------------------------------------------------------------------- /res/components/CKSSThree_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/CKSSThree_bg.svg -------------------------------------------------------------------------------- /res/components/CKSSThree_fg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/CKSSThree_fg.svg -------------------------------------------------------------------------------- /res/components/CrossfaderBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/CrossfaderBackground.svg -------------------------------------------------------------------------------- /res/components/CrossfaderHandle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/CrossfaderHandle.svg -------------------------------------------------------------------------------- /res/components/Davies1900hBlack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hBlack.svg -------------------------------------------------------------------------------- /res/components/Davies1900hDarkGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hDarkGrey.svg -------------------------------------------------------------------------------- /res/components/Davies1900hDarkGrey_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hDarkGrey_bg.svg -------------------------------------------------------------------------------- /res/components/Davies1900hLargeGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hLargeGrey.svg -------------------------------------------------------------------------------- /res/components/Davies1900hLargeGrey_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hLargeGrey_bg.svg -------------------------------------------------------------------------------- /res/components/Davies1900hLargeLightGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hLargeLightGrey.svg -------------------------------------------------------------------------------- /res/components/Davies1900hLargeLightGrey_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hLargeLightGrey_bg.svg -------------------------------------------------------------------------------- /res/components/Davies1900hLightGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hLightGrey.svg -------------------------------------------------------------------------------- /res/components/Davies1900hLightGrey_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hLightGrey_bg.svg -------------------------------------------------------------------------------- /res/components/Davies1900hWhiteEndless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hWhiteEndless.svg -------------------------------------------------------------------------------- /res/components/Davies1900hWhiteEndless_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Davies1900hWhiteEndless_bg.svg -------------------------------------------------------------------------------- /res/components/Knurlie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/Knurlie.svg -------------------------------------------------------------------------------- /res/components/SwitchNarrowHoriz_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchNarrowHoriz_0.svg -------------------------------------------------------------------------------- /res/components/SwitchNarrowHoriz_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchNarrowHoriz_1.svg -------------------------------------------------------------------------------- /res/components/SwitchNarrow_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchNarrow_0.svg -------------------------------------------------------------------------------- /res/components/SwitchNarrow_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchNarrow_1.svg -------------------------------------------------------------------------------- /res/components/SwitchNarrow_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchNarrow_2.svg -------------------------------------------------------------------------------- /res/components/SwitchTallVert_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchTallVert_bg.svg -------------------------------------------------------------------------------- /res/components/SwitchTallVert_fg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchTallVert_fg.svg -------------------------------------------------------------------------------- /res/components/SwitchWideHoriz_bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchWideHoriz_bg.svg -------------------------------------------------------------------------------- /res/components/SwitchWideHoriz_fg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/SwitchWideHoriz_fg.svg -------------------------------------------------------------------------------- /res/components/VCVBezelBig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/components/VCVBezelBig.svg -------------------------------------------------------------------------------- /res/fonts/MISO-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/fonts/MISO-info.txt -------------------------------------------------------------------------------- /res/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/fonts/OFL.txt -------------------------------------------------------------------------------- /res/fonts/Segment7Standard.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/fonts/Segment7Standard.otf -------------------------------------------------------------------------------- /res/fonts/miso.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/fonts/miso.otf -------------------------------------------------------------------------------- /res/panels/ABC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/ABC.svg -------------------------------------------------------------------------------- /res/panels/ADSR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/ADSR.svg -------------------------------------------------------------------------------- /res/panels/Atte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Atte.svg -------------------------------------------------------------------------------- /res/panels/AxBC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/AxBC.svg -------------------------------------------------------------------------------- /res/panels/Bandit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Bandit.svg -------------------------------------------------------------------------------- /res/panels/Burst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Burst.svg -------------------------------------------------------------------------------- /res/panels/Bypass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Bypass.svg -------------------------------------------------------------------------------- /res/panels/ChoppingKinky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/ChoppingKinky.svg -------------------------------------------------------------------------------- /res/panels/DualAtenuverter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/DualAtenuverter.svg -------------------------------------------------------------------------------- /res/panels/EvenVCO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/EvenVCO.svg -------------------------------------------------------------------------------- /res/panels/HexmixVCA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/HexmixVCA.svg -------------------------------------------------------------------------------- /res/panels/Kickall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Kickall.svg -------------------------------------------------------------------------------- /res/panels/Mex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Mex.svg -------------------------------------------------------------------------------- /res/panels/MidiThing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/MidiThing.svg -------------------------------------------------------------------------------- /res/panels/Mixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Mixer.svg -------------------------------------------------------------------------------- /res/panels/Mixer2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Mixer2.svg -------------------------------------------------------------------------------- /res/panels/Morphader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Morphader.svg -------------------------------------------------------------------------------- /res/panels/MotionMTR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/MotionMTR.svg -------------------------------------------------------------------------------- /res/panels/MuDi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/MuDi.svg -------------------------------------------------------------------------------- /res/panels/Muxlicer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Muxlicer.svg -------------------------------------------------------------------------------- /res/panels/NoisePlethora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/NoisePlethora.svg -------------------------------------------------------------------------------- /res/panels/Octaves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Octaves.svg -------------------------------------------------------------------------------- /res/panels/Percall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Percall.svg -------------------------------------------------------------------------------- /res/panels/PonyVCO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/PonyVCO.svg -------------------------------------------------------------------------------- /res/panels/Rampage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Rampage.svg -------------------------------------------------------------------------------- /res/panels/STMix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/STMix.svg -------------------------------------------------------------------------------- /res/panels/SamplingModulator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/SamplingModulator.svg -------------------------------------------------------------------------------- /res/panels/Slew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Slew.svg -------------------------------------------------------------------------------- /res/panels/SlewLimiter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/SlewLimiter.svg -------------------------------------------------------------------------------- /res/panels/SpringReverb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/SpringReverb.svg -------------------------------------------------------------------------------- /res/panels/StereoStrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/StereoStrip.svg -------------------------------------------------------------------------------- /res/panels/Voltio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/res/panels/Voltio.svg -------------------------------------------------------------------------------- /src/ABC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/ABC.cpp -------------------------------------------------------------------------------- /src/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/ADSR.cpp -------------------------------------------------------------------------------- /src/Atte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Atte.cpp -------------------------------------------------------------------------------- /src/AxBC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/AxBC.cpp -------------------------------------------------------------------------------- /src/Bandit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Bandit.cpp -------------------------------------------------------------------------------- /src/Burst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Burst.cpp -------------------------------------------------------------------------------- /src/Bypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Bypass.cpp -------------------------------------------------------------------------------- /src/ChoppingKinky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/ChoppingKinky.cpp -------------------------------------------------------------------------------- /src/ChowDSP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/ChowDSP.hpp -------------------------------------------------------------------------------- /src/DualAtenuverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/DualAtenuverter.cpp -------------------------------------------------------------------------------- /src/EvenVCO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/EvenVCO.cpp -------------------------------------------------------------------------------- /src/HexmixVCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/HexmixVCA.cpp -------------------------------------------------------------------------------- /src/Kickall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Kickall.cpp -------------------------------------------------------------------------------- /src/MidiThing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/MidiThing.cpp -------------------------------------------------------------------------------- /src/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Mixer.cpp -------------------------------------------------------------------------------- /src/Mixer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Mixer2.cpp -------------------------------------------------------------------------------- /src/Morphader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Morphader.cpp -------------------------------------------------------------------------------- /src/MotionMTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/MotionMTR.cpp -------------------------------------------------------------------------------- /src/MuDi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/MuDi.cpp -------------------------------------------------------------------------------- /src/Muxlicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Muxlicer.cpp -------------------------------------------------------------------------------- /src/NoisePlethora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/NoisePlethora.cpp -------------------------------------------------------------------------------- /src/Octaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Octaves.cpp -------------------------------------------------------------------------------- /src/Percall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Percall.cpp -------------------------------------------------------------------------------- /src/PonyVCO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/PonyVCO.cpp -------------------------------------------------------------------------------- /src/Rampage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Rampage.cpp -------------------------------------------------------------------------------- /src/STMix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/STMix.cpp -------------------------------------------------------------------------------- /src/SamplingModulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/SamplingModulator.cpp -------------------------------------------------------------------------------- /src/Slew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Slew.cpp -------------------------------------------------------------------------------- /src/SlewLimiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/SlewLimiter.cpp -------------------------------------------------------------------------------- /src/SpringReverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/SpringReverb.cpp -------------------------------------------------------------------------------- /src/StereoStrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/StereoStrip.cpp -------------------------------------------------------------------------------- /src/Voltio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/Voltio.cpp -------------------------------------------------------------------------------- /src/noise-plethora/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/LICENSE.md -------------------------------------------------------------------------------- /src/noise-plethora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/README.md -------------------------------------------------------------------------------- /src/noise-plethora/plugins/Banks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/Banks.cpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/Banks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/Banks.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/Banks_Def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/Banks_Def.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/NoisePlethoraPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/NoisePlethoraPlugin.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_Atari.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_Atari.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_BasuraTotal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_BasuraTotal.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_CrossModRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_CrossModRing.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_FibonacciCluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_FibonacciCluster.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_PrimeCluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_PrimeCluster.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_PrimeCnoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_PrimeCnoise.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_Rwalk_BitCrushPW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_Rwalk_BitCrushPW.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_Rwalk_LFree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_Rwalk_LFree.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_Rwalk_SineFMFlange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_Rwalk_SineFMFlange.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_S_H.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_S_H.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_TeensyAlt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_TeensyAlt.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_TestPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_TestPlugin.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_TriFMcluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_TriFMcluster.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_WalkingFilomena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_WalkingFilomena.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_WhiteNoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_WhiteNoise.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_XModRingSine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_XModRingSine.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_arrayOnTheRocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_arrayOnTheRocks.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_basurilla.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_basurilla.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_clusterSaw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_clusterSaw.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_crCluster2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_crCluster2.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_existencelsPain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_existencelsPain.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_grainGlitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_grainGlitch.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_grainGlitchII.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_grainGlitchII.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_grainGlitchIII.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_grainGlitchIII.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_partialCluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_partialCluster.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_phasingCluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_phasingCluster.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_pwCluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_pwCluster.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_radioOhNo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_radioOhNo.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_resonoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_resonoise.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_satanWorkout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_satanWorkout.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_sineFMcluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_sineFMcluster.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_whoKnows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_whoKnows.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/P_xModRingSqr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/P_xModRingSqr.hpp -------------------------------------------------------------------------------- /src/noise-plethora/plugins/ProgramSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/plugins/ProgramSelector.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy-audio-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy-audio-device.png -------------------------------------------------------------------------------- /src/noise-plethora/teensy-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy-gui.png -------------------------------------------------------------------------------- /src/noise-plethora/teensy/TeensyAudioReplacements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/TeensyAudioReplacements.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/audio_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/audio_core.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/dspinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/dspinst.h -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_bitcrusher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_bitcrusher.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_bitcrusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_bitcrusher.h -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_combine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_combine.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_combine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_combine.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_flange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_flange.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_flange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_flange.h -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_freeverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_freeverb.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_freeverb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_freeverb.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_granular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_granular.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_granular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_granular.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_multiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_multiply.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_multiply.h -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_wavefolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_wavefolder.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/effect_wavefolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/effect_wavefolder.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/filter_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/filter_variable.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/filter_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/filter_variable.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/mixer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/mixer.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_dc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_dc.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_pinknoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_pinknoise.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_pinknoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_pinknoise.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_pwm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_pwm.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_pwm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_pwm.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_sine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_sine.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_waveform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_waveform.hpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_whitenoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_whitenoise.cpp -------------------------------------------------------------------------------- /src/noise-plethora/teensy/synth_whitenoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/noise-plethora/teensy/synth_whitenoise.hpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/Befaco/HEAD/src/plugin.hpp --------------------------------------------------------------------------------