├── .github ├── static.yml └── workflows │ └── static.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── cpp ├── bigFiles.txt ├── commandline │ ├── CMakeLists.txt │ ├── README.txt │ ├── RtAudio.cpp │ ├── RtAudio.h │ ├── RtError.h │ ├── beat2.wav │ ├── blip.wav │ ├── crebit2.ogg │ ├── crebit2.wav │ ├── main.cpp │ ├── maximilianTest.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── maximilian_examples │ │ ├── .gitignore │ │ ├── 1.TestTone │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 10.Filters │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 11.Mixing │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 12.SamplePlayer │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 13.Advanced-Filters │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 14.monosynth │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 15.polysynth │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 16.Replicant │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 17.Compressor │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 18.DrumMachine │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 19.Enveloping2 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 2.TwoTones │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 20.FFT_example │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 21.Recording │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 22.Analysis │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 23.Chorus │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 24.Flanger │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 3.AM1 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 4.AM2 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 5.FM1 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 6.FM2 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 7.Counting1 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 8.Counting2 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 8.Counting3 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 8.Counting4 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 9.Envelopes1 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 9.Envelopes2 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── 9.Envelopes3 │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── build.sh │ │ └── maximilianExamples.cmake │ ├── player.cpp │ ├── player.h │ ├── snare.wav │ ├── stb_vorbis.c │ ├── stb_vorbis.h │ └── tests │ │ ├── ffttest │ │ ├── CMakeLists.txt │ │ └── ffttest.cpp │ │ ├── kuratest │ │ ├── CMakeLists.txt │ │ └── kuratest.cpp │ │ ├── mfcctest │ │ ├── CMakeLists.txt │ │ └── mfcctest.cpp │ │ ├── ringBufTest │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── main.cpp │ │ └── maximilian │ │ └── svftest │ │ ├── CMakeLists.txt │ │ └── svftest.cpp └── openFrameworks │ ├── ofxMaxim │ ├── install.xml │ ├── libs │ │ ├── fft.cpp │ │ ├── fft.h │ │ ├── maxiAtoms.cpp │ │ ├── maxiAtoms.h │ │ ├── maxiBark.cpp │ │ ├── maxiBark.h │ │ ├── maxiFFT.cpp │ │ ├── maxiFFT.h │ │ ├── maxiGrains.cpp │ │ ├── maxiGrains.h │ │ ├── maxiMFCC.cpp │ │ ├── maxiMFCC.h │ │ ├── maximilian.cpp │ │ ├── maximilian.h │ │ ├── sineTable.h │ │ ├── stb_vorbis.c │ │ └── stb_vorbis.h │ └── src │ │ └── ofxMaxim.h │ └── openFrameworksExamples │ ├── OSX │ ├── OF0.8.4MaximExtractorExample │ │ ├── Makefile │ │ ├── MaximExtractorExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── MaximExtractorExample Debug.xcscheme │ │ │ │ └── MaximExtractorExample Release.xcscheme │ │ ├── Project.xcconfig │ │ ├── addons.make │ │ ├── bin │ │ │ └── data │ │ │ │ ├── .gitkeep │ │ │ │ ├── Arial.ttf │ │ │ │ └── settings.xml │ │ ├── config.make │ │ ├── ofxMaxim │ │ │ ├── install.xml │ │ │ ├── libs │ │ │ │ ├── fft.cpp │ │ │ │ ├── fft.h │ │ │ │ ├── maxiAtoms.cpp │ │ │ │ ├── maxiAtoms.h │ │ │ │ ├── maxiBark.cpp │ │ │ │ ├── maxiBark.h │ │ │ │ ├── maxiFFT.cpp │ │ │ │ ├── maxiFFT.h │ │ │ │ ├── maxiGrains.cpp │ │ │ │ ├── maxiGrains.h │ │ │ │ ├── maxiMFCC.cpp │ │ │ │ ├── maxiMFCC.h │ │ │ │ ├── maximilian.cpp │ │ │ │ ├── maximilian.h │ │ │ │ ├── sineTable.h │ │ │ │ ├── stb_vorbis.c │ │ │ │ └── stb_vorbis.h │ │ │ └── src │ │ │ │ └── ofxMaxim.h │ │ ├── openFrameworks-Info.plist │ │ └── src │ │ │ ├── main.cpp │ │ │ ├── testApp.cpp │ │ │ └── testApp.h │ ├── OF0.9.2_OSX_Granular0_92 │ │ ├── Makefile │ │ ├── Project.xcconfig │ │ ├── addons.make │ │ ├── bin │ │ │ └── data │ │ │ │ ├── .gitkeep │ │ │ │ ├── 24620__anamorphosis__GMB_Kantilan_1.wav │ │ │ │ ├── 2630__Jovica__133_bpm_ATTACK_LOOP_04_electrified_analog_kit_variation_16_mono.wav │ │ │ │ ├── 26393__brfindla__Calango1berimbau.wav │ │ │ │ ├── 59210__suonho__abstract_electrofunkbreakbeats_124bpm_mono.wav │ │ │ │ ├── 68373__juskiddink__Cello_open_string_bowed.wav │ │ │ │ ├── 71515__Microscopia__Wilhelm_Bruder_Sohne_Organ.wav │ │ │ │ └── beat2.wav │ │ ├── config.make │ │ ├── granular0_92.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── granular0_92 Debug.xcscheme │ │ │ │ └── granular0_92 Release.xcscheme │ │ ├── openFrameworks-Info.plist │ │ └── src │ │ │ ├── main.cpp │ │ │ ├── ofApp.cpp │ │ │ └── ofApp.h │ ├── OF_0.10.1_Simple │ │ ├── Makefile │ │ ├── Project.xcconfig │ │ ├── addons.make │ │ ├── bin │ │ │ └── data │ │ │ │ └── .gitkeep │ │ ├── config.make │ │ ├── maxiProj.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── maxiProj Debug.xcscheme │ │ │ │ └── maxiProj Release.xcscheme │ │ ├── openFrameworks-Info.plist │ │ └── src │ │ │ ├── main.cpp │ │ │ ├── ofApp.cpp │ │ │ └── ofApp.h │ ├── OF_0.9.0_OSX_XCode7_mySketch_maxim │ │ ├── Makefile │ │ ├── Project.xcconfig │ │ ├── addons.make │ │ ├── bin │ │ │ └── data │ │ │ │ ├── .gitkeep │ │ │ │ └── sound.wav │ │ ├── config.make │ │ ├── mySketch.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── mySketch Debug.xcscheme │ │ │ │ └── mySketch Release.xcscheme │ │ ├── ofxMaxim │ │ │ ├── install.xml │ │ │ ├── libs │ │ │ │ ├── fft.cpp │ │ │ │ ├── fft.h │ │ │ │ ├── maxiAtoms.cpp │ │ │ │ ├── maxiAtoms.h │ │ │ │ ├── maxiBark.cpp │ │ │ │ ├── maxiBark.h │ │ │ │ ├── maxiFFT.cpp │ │ │ │ ├── maxiFFT.h │ │ │ │ ├── maxiGrains.cpp │ │ │ │ ├── maxiGrains.h │ │ │ │ ├── maxiMFCC.cpp │ │ │ │ ├── maxiMFCC.h │ │ │ │ ├── maximilian.cpp │ │ │ │ ├── maximilian.h │ │ │ │ ├── sineTable.h │ │ │ │ ├── stb_vorbis.c │ │ │ │ └── stb_vorbis.h │ │ │ └── src │ │ │ │ └── ofxMaxim.h │ │ ├── openFrameworks-Info.plist │ │ └── src │ │ │ ├── main.cpp │ │ │ ├── ofApp.cpp │ │ │ └── ofApp.h │ └── ofxMaximExample_0.8.4_OSX_Granular │ │ ├── Makefile │ │ ├── Project.xcconfig │ │ ├── bin │ │ └── data │ │ │ ├── 24620__anamorphosis__GMB_Kantilan_1.wav │ │ │ ├── 2630__Jovica__133_bpm_ATTACK_LOOP_04_electrified_analog_kit_variation_16_mono.wav │ │ │ ├── 26393__brfindla__Calango1berimbau.wav │ │ │ ├── 59210__suonho__abstract_electrofunkbreakbeats_124bpm_mono.wav │ │ │ ├── 68373__juskiddink__Cello_open_string_bowed.wav │ │ │ ├── 71515__Microscopia__Wilhelm_Bruder_Sohne_Organ.wav │ │ │ └── beat2.wav │ │ ├── config.make │ │ ├── maximGranular.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── emptyExample Debug.xcscheme │ │ │ └── emptyExample Release.xcscheme │ │ ├── ofxMaxim │ │ ├── install.xml │ │ ├── libs │ │ │ ├── fft.cpp │ │ │ ├── fft.h │ │ │ ├── maxiAtoms.cpp │ │ │ ├── maxiAtoms.h │ │ │ ├── maxiFFT.cpp │ │ │ ├── maxiFFT.h │ │ │ ├── maxiGrains.cpp │ │ │ ├── maxiGrains.h │ │ │ ├── maxiMFCC.cpp │ │ │ ├── maxiMFCC.h │ │ │ ├── maximilian.cpp │ │ │ ├── maximilian.h │ │ │ ├── sineTable.h │ │ │ ├── stb_vorbis.c │ │ │ └── stb_vorbis.h │ │ └── src │ │ │ └── ofxMaxim.h │ │ ├── ofxOsc │ │ ├── libs │ │ │ └── oscpack │ │ │ │ └── src │ │ │ │ ├── ip │ │ │ │ ├── IpEndpointName.cpp │ │ │ │ ├── IpEndpointName.h │ │ │ │ ├── NetworkingUtils.h │ │ │ │ ├── PacketListener.h │ │ │ │ ├── TimerListener.h │ │ │ │ ├── UdpSocket.h │ │ │ │ ├── posix │ │ │ │ │ ├── NetworkingUtils.cpp │ │ │ │ │ └── UdpSocket.cpp │ │ │ │ └── win32 │ │ │ │ │ ├── NetworkingUtilsWin.cpp │ │ │ │ │ └── UdpSocketWin.cpp │ │ │ │ └── osc │ │ │ │ ├── MessageMappingOscPacketListener.h │ │ │ │ ├── OscException.h │ │ │ │ ├── OscHostEndianness.h │ │ │ │ ├── OscOutboundPacketStream.cpp │ │ │ │ ├── OscOutboundPacketStream.h │ │ │ │ ├── OscPacketListener.h │ │ │ │ ├── OscPrintReceivedElements.cpp │ │ │ │ ├── OscPrintReceivedElements.h │ │ │ │ ├── OscReceivedElements.cpp │ │ │ │ ├── OscReceivedElements.h │ │ │ │ ├── OscTypes.cpp │ │ │ │ └── OscTypes.h │ │ └── src │ │ │ ├── ofxOsc.h │ │ │ ├── ofxOscArg.h │ │ │ ├── ofxOscBundle.cpp │ │ │ ├── ofxOscBundle.h │ │ │ ├── ofxOscMessage.cpp │ │ │ ├── ofxOscMessage.h │ │ │ ├── ofxOscParameterSync.cpp │ │ │ ├── ofxOscParameterSync.h │ │ │ ├── ofxOscReceiver.cpp │ │ │ ├── ofxOscReceiver.h │ │ │ ├── ofxOscSender.cpp │ │ │ └── ofxOscSender.h │ │ ├── openFrameworks-Info.plist │ │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h │ ├── iOS │ └── maximFeatureExtractor0.8.4 │ │ ├── Project.xcconfig │ │ ├── bin │ │ └── data │ │ │ ├── .gitkeep │ │ │ ├── Arial.ttf │ │ │ ├── Default-568h@2x~iphone.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Default@2x~ipad.png │ │ │ ├── Default@2x~iphone.png │ │ │ ├── Default~ipad.png │ │ │ ├── Default~iphone.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── beat2.wav │ │ │ └── settings.xml │ │ ├── maximExample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── ofxiOS-Info.plist │ │ ├── ofxiOS_Prefix.pch │ │ └── src │ │ ├── main.mm │ │ ├── ofApp.h │ │ └── ofApp.mm │ └── windows │ ├── OF_0.10.1_Simple_VS2019 │ ├── addons.make │ ├── bin │ │ └── data │ │ │ └── .gitkeep │ ├── icon.rc │ ├── maxiProj.sln │ ├── maxiProj.vcxproj │ ├── maxiProj.vcxproj.filters │ ├── maxiProj.vcxproj.user │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h │ ├── ofMaximExampleVS2010 │ ├── audioOutputExample.sdf │ ├── audioOutputExample.sln │ ├── audioOutputExample.suo │ ├── audioOutputExample.vcxproj │ ├── audioOutputExample.vcxproj.user │ └── src │ │ ├── main.cpp │ │ ├── maximilian.cpp │ │ ├── maximilian.h │ │ ├── testApp.cpp │ │ └── testApp.h │ ├── ofMaximWindowsVS2008_emptyExample │ ├── bin │ │ └── data │ │ │ ├── Low.wav │ │ │ └── beat2.wav │ ├── emptyExample.ncb │ ├── emptyExample.sln │ ├── emptyExample.suo │ ├── emptyExample.vcproj │ ├── emptyExample.vcproj.GOLDSMIT-282193.Administrator.user │ ├── emptyExample.vcproj.user │ └── src │ │ ├── main.cpp │ │ ├── maximilian.cpp │ │ ├── maximilian.h │ │ ├── testApp.cpp │ │ └── testApp.h │ └── ofxMaximExampleVS2010-OF0072 │ ├── emptyExample.sln │ ├── emptyExample.suo │ ├── emptyExample.vcxproj │ ├── emptyExample.vcxproj.filters │ ├── emptyExample.vcxproj.user │ └── src │ ├── main.cpp │ ├── ofxMaxim │ ├── install.xml │ ├── libs │ │ ├── fft.cpp │ │ ├── fft.h │ │ ├── maxiAtoms.cpp │ │ ├── maxiAtoms.h │ │ ├── maxiFFT.cpp │ │ ├── maxiFFT.h │ │ ├── maxiGrains.cpp │ │ ├── maxiGrains.h │ │ ├── maxiMFCC.cpp │ │ ├── maxiMFCC.h │ │ ├── maximilian.cpp │ │ ├── maximilian.h │ │ ├── sineTable.h │ │ ├── stb_vorbis.c │ │ └── stb_vorbis.h │ └── src │ │ └── ofxMaxim.h │ ├── testApp.cpp │ └── testApp.h ├── developer_notes.md ├── docs ├── _sources │ ├── core.rst.txt │ ├── extended.rst.txt │ ├── index.rst.txt │ └── install.rst.txt ├── _static │ ├── _sphinx_javascript_frameworks_compat.js │ ├── basic.css │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── jquery-3.6.0.js │ ├── jquery.js │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ └── theme.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sphinx_highlight.js │ ├── underscore-1.13.1.js │ └── underscore.js ├── core.html ├── docbuild │ ├── Makefile │ ├── _build │ │ ├── doctrees │ │ │ ├── core.doctree │ │ │ ├── environment.pickle │ │ │ ├── extended.doctree │ │ │ ├── index.doctree │ │ │ └── install.doctree │ │ └── html │ │ │ ├── .buildinfo │ │ │ ├── _sources │ │ │ ├── core.rst.txt │ │ │ ├── extended.rst.txt │ │ │ ├── index.rst.txt │ │ │ └── install.rst.txt │ │ │ ├── _static │ │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ │ ├── basic.css │ │ │ ├── css │ │ │ │ ├── badge_only.css │ │ │ │ ├── fonts │ │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ ├── lato-bold.woff2 │ │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ │ ├── lato-normal.woff │ │ │ │ │ └── lato-normal.woff2 │ │ │ │ └── theme.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── file.png │ │ │ ├── jquery-3.6.0.js │ │ │ ├── jquery.js │ │ │ ├── js │ │ │ │ ├── badge_only.js │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ └── theme.js │ │ │ ├── language_data.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── sphinx_highlight.js │ │ │ ├── underscore-1.13.1.js │ │ │ └── underscore.js │ │ │ ├── core.html │ │ │ ├── extended.html │ │ │ ├── genindex.html │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── objects.inv │ │ │ ├── search.html │ │ │ └── searchindex.js │ ├── conf.py │ ├── core.rst │ ├── doxygen.config │ ├── extended.rst │ ├── index.rst │ ├── install.rst │ ├── make.bat │ └── xml │ │ ├── classA.xml │ │ ├── classThis.xml │ │ ├── classconvert.xml │ │ ├── classfft.xml │ │ ├── classgranularSynth.xml │ │ ├── classmaxiAccelerator.xml │ │ ├── classmaxiAsyncKuramotoOscillator.xml │ │ ├── classmaxiAtomBook.xml │ │ ├── classmaxiAtomBookPlayer.xml │ │ ├── classmaxiBarkScaleAnalyser.xml │ │ ├── classmaxiBiquad.xml │ │ ├── classmaxiBits.xml │ │ ├── classmaxiChorus.xml │ │ ├── classmaxiClock.xml │ │ ├── classmaxiCollider.xml │ │ ├── classmaxiConvert.xml │ │ ├── classmaxiConvolve.xml │ │ ├── classmaxiCounter.xml │ │ ├── classmaxiDCBlocker.xml │ │ ├── classmaxiDattaroReverb.xml │ │ ├── classmaxiDelayline.xml │ │ ├── classmaxiDyn.xml │ │ ├── classmaxiDynamics.xml │ │ ├── classmaxiEnv.xml │ │ ├── classmaxiEnvGen.xml │ │ ├── classmaxiEnvelope.xml │ │ ├── classmaxiEnvelopeFollowerType.xml │ │ ├── classmaxiFFT.xml │ │ ├── classmaxiFFTAdaptor.xml │ │ ├── classmaxiFFTOctaveAnalyzer.xml │ │ ├── classmaxiFilter.xml │ │ ├── classmaxiFlanger.xml │ │ ├── classmaxiFreeVerb.xml │ │ ├── classmaxiFreeVerbStereo.xml │ │ ├── classmaxiGrain.xml │ │ ├── classmaxiGrainBase.xml │ │ ├── classmaxiGrainPlayer.xml │ │ ├── classmaxiGrainWindowCache.xml │ │ ├── classmaxiHats.xml │ │ ├── classmaxiIFFT.xml │ │ ├── classmaxiIFFTAdaptor.xml │ │ ├── classmaxiIndex.xml │ │ ├── classmaxiKick.xml │ │ ├── classmaxiKuramotoOscillator.xml │ │ ├── classmaxiKuramotoOscillatorSet.xml │ │ ├── classmaxiLagExp.xml │ │ ├── classmaxiLine.xml │ │ ├── classmaxiMFCCAdaptor.xml │ │ ├── classmaxiMFCCAnalyser.xml │ │ ├── classmaxiMap.xml │ │ ├── classmaxiMath.xml │ │ ├── classmaxiMix.xml │ │ ├── classmaxiNonlinearity.xml │ │ ├── classmaxiOsc.xml │ │ ├── classmaxiPitchShift.xml │ │ ├── classmaxiPoll.xml │ │ ├── classmaxiPolyBLEP.xml │ │ ├── classmaxiRMS.xml │ │ ├── classmaxiRatioSeq.xml │ │ ├── classmaxiReverbBase.xml │ │ ├── classmaxiReverbFilters.xml │ │ ├── classmaxiRingBuf.xml │ │ ├── classmaxiSVF.xml │ │ ├── classmaxiSample.xml │ │ ├── classmaxiSampleAndHold.xml │ │ ├── classmaxiSampler.xml │ │ ├── classmaxiSatReverb.xml │ │ ├── classmaxiSelect.xml │ │ ├── classmaxiSelectX.xml │ │ ├── classmaxiSettings.xml │ │ ├── classmaxiSnare.xml │ │ ├── classmaxiStep.xml │ │ ├── classmaxiStretch.xml │ │ ├── classmaxiSynth.xml │ │ ├── classmaxiTimeStretch.xml │ │ ├── classmaxiTrigger.xml │ │ ├── classmaxiXFade.xml │ │ ├── classmaxiZXToPulse.xml │ │ ├── classmaxiZeroCrossingDetector.xml │ │ ├── classmaxiZeroCrossingRate.xml │ │ ├── classvectorTools.xml │ │ ├── combine.xslt │ │ ├── compound.xsd │ │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.xml │ │ ├── dir_87a455bccb09a92130c26a11a880c98a.xml │ │ ├── fft_8cpp.xml │ │ ├── fft_8h.xml │ │ ├── index.xml │ │ ├── index.xsd │ │ ├── maxiAtoms_8cpp.xml │ │ ├── maxiAtoms_8h.xml │ │ ├── maxiBark_8cpp.xml │ │ ├── maxiBark_8h.xml │ │ ├── maxiClock_8cpp.xml │ │ ├── maxiClock_8h.xml │ │ ├── maxiConvolve_8cpp.xml │ │ ├── maxiConvolve_8h.xml │ │ ├── maxiFFT_8cpp.xml │ │ ├── maxiFFT_8h.xml │ │ ├── maxiGrains_8cpp.xml │ │ ├── maxiGrains_8h.xml │ │ ├── maxiMFCC_8cpp.xml │ │ ├── maxiMFCC_8h.xml │ │ ├── maxiPolyBLEP_8h.xml │ │ ├── maxiReverb_8cpp.xml │ │ ├── maxiReverb_8h.xml │ │ ├── maxiSynths_8cpp.xml │ │ ├── maxiSynths_8h.xml │ │ ├── maxim_8h.xml │ │ ├── maximilian_8cpp.xml │ │ ├── maximilian_8embind_8cpp.xml │ │ ├── maximilian_8h.xml │ │ ├── namespaceemscripten.xml │ │ ├── namespacestd.xml │ │ ├── stb__vorbis_8c.xml │ │ ├── stb__vorbis_8h.xml │ │ ├── structCRCscan.xml │ │ ├── structCodebook.xml │ │ ├── structFloor0.xml │ │ ├── structFloor1.xml │ │ ├── structMapping.xml │ │ ├── structMappingChannel.xml │ │ ├── structMode.xml │ │ ├── structProbedPage.xml │ │ ├── structResidue.xml │ │ ├── structVorbisPoint.xml │ │ ├── structblackmanHarrisWinFunctor.xml │ │ ├── structblackmanNutallWinFunctor.xml │ │ ├── structcosineWinFunctor.xml │ │ ├── structgaussianWinFunctor.xml │ │ ├── structhammingWinFunctor.xml │ │ ├── structhannWinFunctor.xml │ │ ├── structmaxiAccelerator_1_1queuedAtom.xml │ │ ├── structmaxiAtom.xml │ │ ├── structmaxiEnvGen_1_1envStage.xml │ │ ├── structmaxiGaborAtom.xml │ │ ├── structrectWinFunctor.xml │ │ ├── structstb__vorbis.xml │ │ ├── structstb__vorbis__alloc.xml │ │ ├── structstb__vorbis__info.xml │ │ ├── structtriangleNZWinFunctor.xml │ │ ├── structtriangleWinFunctor.xml │ │ ├── unionFloor.xml │ │ ├── unionfloat__conv.xml │ │ └── xml.xsd ├── extended.html ├── genindex.html ├── html │ ├── .buildinfo │ ├── _sources │ │ ├── core.rst.txt │ │ ├── extended.rst.txt │ │ ├── index.rst.txt │ │ └── install.rst.txt │ ├── _static │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery-3.6.0.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── sphinx_highlight.js │ │ ├── underscore-1.13.1.js │ │ └── underscore.js │ ├── core.html │ ├── extended.html │ ├── genindex.html │ ├── index.html │ ├── install.html │ ├── objects.inv │ ├── search.html │ └── searchindex.js ├── index.html ├── install.html ├── objects.inv ├── search.html └── searchindex.js ├── js ├── audio-worklet │ ├── Makefile │ ├── common │ │ ├── VariableBufferKernel.cc │ │ ├── maximilian.post.js │ │ ├── maximilian.util.js │ │ ├── test.js │ │ └── wasm-audio-helper.js │ └── examples │ │ ├── 00-custom-processor │ │ ├── custom-processor.js │ │ └── index.html │ │ ├── 01-maxi-processor-base │ │ ├── index.html │ │ └── maxi-processor.js │ │ ├── 02-maxi-processor-hot-swapping-worklets │ │ ├── index.html │ │ └── maxi-processor.js │ │ ├── 03-maxi-processor-eval-message │ │ ├── index.html │ │ └── maxi-processor.js │ │ ├── 04-maxi-processor-audioin │ │ ├── index.html │ │ └── maxi-audio-processor.js │ │ ├── 05-maxi-processor-sequencer │ │ ├── 909.wav │ │ ├── 909a.ogg │ │ ├── 909b.wav │ │ ├── 909closed.wav │ │ ├── 909open.wav │ │ ├── index.html │ │ └── maxi-processor.js │ │ ├── 06-maxi-processor-synth-pool │ │ ├── index.html │ │ └── maxi-processor.js │ │ ├── 07-maxi-processor-granular │ │ ├── beat2.wav │ │ ├── index.html │ │ └── maxi-audio-processor.js │ │ ├── 08-maxi-processor-proto-engine │ │ ├── 909.wav │ │ ├── 909b.wav │ │ ├── 909closed.wav │ │ ├── 909open.wav │ │ ├── index.html │ │ └── maxi-processor.js │ │ ├── 09-maxi-processor-ring-buffer │ │ ├── index.html │ │ └── ring-buffer-maxi-audio-processor.js │ │ └── 10-maxi-processor-FFT │ │ ├── beat2.wav │ │ ├── index.html │ │ └── maxi-processor.js ├── purejs │ ├── Makefile │ ├── maxi-purejs.cpp │ ├── module-bindings.js │ ├── readme.md │ └── tester │ │ ├── tester.bc │ │ ├── tester.cpp │ │ ├── tester.h │ │ ├── tester.js │ │ ├── wrapper.bc │ │ └── wrapper.cpp ├── readme.md ├── script-processor-node │ ├── Makefile │ ├── examples │ │ ├── 00-maximillian.html │ │ ├── 01-test-tone.html │ │ ├── 02-two-tones.html │ │ ├── 03-AM-1.html │ │ ├── 04-AM-2.html │ │ ├── 05-FM-1.html │ │ ├── 06-FM-2.html │ │ ├── 07-sample-player.html │ │ ├── 08-counting-1.html │ │ ├── 08-counting-2.html │ │ ├── 08-counting-3.html │ │ ├── 08-counting-4.html │ │ ├── 09-envelopes.html │ │ ├── 10-filters-SVF.html │ │ ├── 10-filters.html │ │ ├── 11-advanced-filters.html │ │ ├── 12-mixing.html │ │ ├── 13-monosynth.html │ │ ├── 14-polysnth.html │ │ ├── 15-replicant.html │ │ ├── 16-compressor.html │ │ ├── 17-drum-machine.html │ │ ├── 18-enveloping.html │ │ ├── 19-additive-synthesis.html │ │ ├── 20-analysis-FFT.html │ │ ├── 20-analysis-MFCC.html │ │ ├── 20-analysis.html │ │ ├── 21-granular-synthesis.html │ │ ├── 22-sample-player-base64.html │ │ ├── 23-kuramoto.html │ │ ├── 24-bitsynthesis.html │ │ ├── 25-StateVariableFilter.html │ │ ├── 26-SpectralProcessing.html │ │ ├── 27-MFCCs.html │ │ ├── 28-nonlinearities.html │ │ ├── 29-sample-trigger.html │ │ ├── X_ManualWebAudio.html │ │ ├── audio │ │ │ ├── beat2.wav │ │ │ ├── crebit2.ogg │ │ │ ├── hat12.wav │ │ │ ├── kick1.wav │ │ │ ├── kick3.wav │ │ │ └── snare1.wav │ │ └── server.py │ ├── maximilian.post.js │ └── readme.md └── server.py └── src ├── libs ├── PolyBLEP │ ├── PolyBLEP.cpp │ ├── PolyBLEP.h │ └── README.md ├── fft.cpp ├── fft.h ├── maxiAtoms.cpp ├── maxiAtoms.h ├── maxiBark.cpp ├── maxiBark.h ├── maxiClock.cpp ├── maxiClock.h ├── maxiConvolve.cpp ├── maxiConvolve.h ├── maxiFFT.cpp ├── maxiFFT.h ├── maxiGrains.cpp ├── maxiGrains.h ├── maxiMFCC.cpp ├── maxiMFCC.h ├── maxiPolyBLEP.h ├── maxiReverb.cpp ├── maxiReverb.h ├── maxiSynths.cpp ├── maxiSynths.h ├── maxim.h ├── sineTable.h ├── stb_vorbis.c └── stb_vorbis.h ├── maximilian.cpp ├── maximilian.embind.cpp └── maximilian.h /.github/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/.github/static.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/README.md -------------------------------------------------------------------------------- /cpp/bigFiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/bigFiles.txt -------------------------------------------------------------------------------- /cpp/commandline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/README.txt -------------------------------------------------------------------------------- /cpp/commandline/RtAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/RtAudio.cpp -------------------------------------------------------------------------------- /cpp/commandline/RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/RtAudio.h -------------------------------------------------------------------------------- /cpp/commandline/RtError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/RtError.h -------------------------------------------------------------------------------- /cpp/commandline/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/beat2.wav -------------------------------------------------------------------------------- /cpp/commandline/blip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/blip.wav -------------------------------------------------------------------------------- /cpp/commandline/crebit2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/crebit2.ogg -------------------------------------------------------------------------------- /cpp/commandline/crebit2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/crebit2.wav -------------------------------------------------------------------------------- /cpp/commandline/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilianTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilianTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cpp/commandline/maximilianTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilianTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cpp/commandline/maximilianTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilianTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/.gitignore -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/1.TestTone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/1.TestTone/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/1.TestTone/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/1.TestTone/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/10.Filters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/10.Filters/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/10.Filters/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/10.Filters/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/11.Mixing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/11.Mixing/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/11.Mixing/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/11.Mixing/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/12.SamplePlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/12.SamplePlayer/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/12.SamplePlayer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/12.SamplePlayer/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/13.Advanced-Filters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/13.Advanced-Filters/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/13.Advanced-Filters/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/13.Advanced-Filters/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/14.monosynth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/14.monosynth/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/14.monosynth/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/14.monosynth/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/15.polysynth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/15.polysynth/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/15.polysynth/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/15.polysynth/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/16.Replicant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/16.Replicant/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/16.Replicant/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/16.Replicant/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/17.Compressor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/17.Compressor/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/17.Compressor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/17.Compressor/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/18.DrumMachine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/18.DrumMachine/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/18.DrumMachine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/18.DrumMachine/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/19.Enveloping2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/19.Enveloping2/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/19.Enveloping2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/19.Enveloping2/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/2.TwoTones/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/2.TwoTones/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/2.TwoTones/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/2.TwoTones/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/20.FFT_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/20.FFT_example/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/20.FFT_example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/20.FFT_example/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/21.Recording/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/21.Recording/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/21.Recording/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/21.Recording/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/22.Analysis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/22.Analysis/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/22.Analysis/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/22.Analysis/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/23.Chorus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/23.Chorus/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/23.Chorus/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/23.Chorus/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/24.Flanger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/24.Flanger/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/24.Flanger/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/24.Flanger/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/3.AM1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/3.AM1/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/3.AM1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/3.AM1/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/4.AM2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/4.AM2/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/4.AM2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/4.AM2/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/5.FM1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/5.FM1/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/5.FM1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/5.FM1/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/6.FM2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/6.FM2/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/6.FM2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/6.FM2/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/7.Counting1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/7.Counting1/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/7.Counting1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/7.Counting1/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/8.Counting2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/8.Counting2/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/8.Counting2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/8.Counting2/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/8.Counting3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/8.Counting3/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/8.Counting3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/8.Counting3/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/8.Counting4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/8.Counting4/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/8.Counting4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/8.Counting4/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/9.Envelopes1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/9.Envelopes1/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/9.Envelopes1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/9.Envelopes1/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/9.Envelopes2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/9.Envelopes2/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/9.Envelopes2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/9.Envelopes2/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/9.Envelopes3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/9.Envelopes3/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/9.Envelopes3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/9.Envelopes3/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/build.sh -------------------------------------------------------------------------------- /cpp/commandline/maximilian_examples/maximilianExamples.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/maximilian_examples/maximilianExamples.cmake -------------------------------------------------------------------------------- /cpp/commandline/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/player.cpp -------------------------------------------------------------------------------- /cpp/commandline/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/player.h -------------------------------------------------------------------------------- /cpp/commandline/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/snare.wav -------------------------------------------------------------------------------- /cpp/commandline/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/stb_vorbis.c -------------------------------------------------------------------------------- /cpp/commandline/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/stb_vorbis.h -------------------------------------------------------------------------------- /cpp/commandline/tests/ffttest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/ffttest/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/tests/ffttest/ffttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/ffttest/ffttest.cpp -------------------------------------------------------------------------------- /cpp/commandline/tests/kuratest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/kuratest/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/tests/kuratest/kuratest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/kuratest/kuratest.cpp -------------------------------------------------------------------------------- /cpp/commandline/tests/mfcctest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/mfcctest/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/tests/mfcctest/mfcctest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/mfcctest/mfcctest.cpp -------------------------------------------------------------------------------- /cpp/commandline/tests/ringBufTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/ringBufTest/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/tests/ringBufTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/ringBufTest/Makefile -------------------------------------------------------------------------------- /cpp/commandline/tests/ringBufTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/ringBufTest/main.cpp -------------------------------------------------------------------------------- /cpp/commandline/tests/ringBufTest/maximilian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/ringBufTest/maximilian -------------------------------------------------------------------------------- /cpp/commandline/tests/svftest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/svftest/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/commandline/tests/svftest/svftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/commandline/tests/svftest/svftest.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/install.xml -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/fft.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/fft.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiAtoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiAtoms.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiAtoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiAtoms.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiBark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiBark.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiBark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiBark.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiFFT.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiFFT.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiGrains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiGrains.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiGrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiGrains.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiMFCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiMFCC.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maxiMFCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maxiMFCC.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maximilian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maximilian.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/maximilian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/maximilian.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/sineTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/sineTable.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/stb_vorbis.c -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/libs/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/libs/stb_vorbis.h -------------------------------------------------------------------------------- /cpp/openFrameworks/ofxMaxim/src/ofxMaxim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/ofxMaxim/src/ofxMaxim.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/Makefile -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/Project.xcconfig -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/addons.make -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/bin/data/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/bin/data/Arial.ttf -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/bin/data/settings.xml -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/config.make -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/install.xml -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/fft.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/fft.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiAtoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiAtoms.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiAtoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiAtoms.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiBark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiBark.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiBark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiBark.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiFFT.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiFFT.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiGrains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiGrains.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiGrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiGrains.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiMFCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiMFCC.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiMFCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maxiMFCC.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maximilian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maximilian.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maximilian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/maximilian.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/sineTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/sineTable.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/stb_vorbis.c -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/libs/stb_vorbis.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/src/ofxMaxim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/ofxMaxim/src/ofxMaxim.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/src/testApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.8.4MaximExtractorExample/src/testApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/Makefile -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/Project.xcconfig -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/addons.make: -------------------------------------------------------------------------------- 1 | ofxMaxim 2 | ofxOsc 3 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/bin/data/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/bin/data/beat2.wav -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/config.make -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/granular0_92.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/granular0_92.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/openFrameworks-Info.plist -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/src/ofApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF0.9.2_OSX_Granular0_92/src/ofApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/Makefile -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/Project.xcconfig -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/addons.make: -------------------------------------------------------------------------------- 1 | ofxMaxim 2 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/config.make -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/maxiProj.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/maxiProj.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/openFrameworks-Info.plist -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/src/ofApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.10.1_Simple/src/ofApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/Makefile -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/Project.xcconfig -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/bin/data/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/bin/data/sound.wav -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/config.make -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/install.xml -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/fft.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/fft.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiAtoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiAtoms.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiAtoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiAtoms.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiBark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiBark.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiBark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiBark.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiFFT.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiFFT.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiGrains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiGrains.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiGrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiGrains.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiMFCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiMFCC.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiMFCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maxiMFCC.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maximilian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maximilian.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maximilian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/maximilian.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/sineTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/sineTable.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/stb_vorbis.c -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/libs/stb_vorbis.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/src/ofxMaxim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/ofxMaxim/src/ofxMaxim.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/openFrameworks-Info.plist -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/src/ofApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/OF_0.9.0_OSX_XCode7_mySketch_maxim/src/ofApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/Makefile -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/Project.xcconfig -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/bin/data/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/bin/data/beat2.wav -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/config.make -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/install.xml -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/fft.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/fft.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiAtoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiAtoms.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiAtoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiAtoms.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiFFT.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiFFT.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiGrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiGrains.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiMFCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiMFCC.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiMFCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maxiMFCC.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maximilian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/maximilian.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/sineTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/sineTable.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/stb_vorbis.c -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/libs/stb_vorbis.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/src/ofxMaxim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxMaxim/src/ofxMaxim.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOsc.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscArg.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscBundle.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscBundle.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscMessage.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscReceiver.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscSender.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/ofxOsc/src/ofxOscSender.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/openFrameworks-Info.plist -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/src/ofApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/OSX/ofxMaximExample_0.8.4_OSX_Granular/src/ofApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/Project.xcconfig -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Arial.ttf -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default@2x.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default@2x~ipad.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default@2x~iphone.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default~ipad.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Default~iphone.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon-72.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon-72@2x.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/Icon@2x.png -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/beat2.wav -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/bin/data/settings.xml -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/ofxiOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/ofxiOS-Info.plist -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/ofxiOS_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/ofxiOS_Prefix.pch -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/main.mm -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.mm -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/addons.make: -------------------------------------------------------------------------------- 1 | ofxMaxim 2 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/icon.rc -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.sln -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.vcxproj -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.vcxproj.filters -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/maxiProj.vcxproj.user -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/src/ofApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/OF_0.10.1_Simple_VS2019/src/ofApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.sdf -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.sln -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.suo -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.vcxproj -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/audioOutputExample.vcxproj.user -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/maximilian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/maximilian.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/maximilian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/maximilian.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/testApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximExampleVS2010/src/testApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/bin/data/Low.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/bin/data/Low.wav -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/bin/data/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/bin/data/beat2.wav -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.ncb -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.sln -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.suo -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.vcproj -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/emptyExample.vcproj.user -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/maximilian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/maximilian.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/maximilian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/maximilian.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/testApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofMaximWindowsVS2008_emptyExample/src/testApp.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.sln -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.suo -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.vcxproj -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.vcxproj.filters -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/emptyExample.vcxproj.user -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/main.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/install.xml -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/fft.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/fft.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiAtoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiAtoms.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiFFT.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiFFT.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiMFCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/maxiMFCC.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/sineTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/libs/sineTable.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/src/ofxMaxim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/ofxMaxim/src/ofxMaxim.h -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/testApp.cpp -------------------------------------------------------------------------------- /cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/cpp/openFrameworks/openFrameworksExamples/windows/ofxMaximExampleVS2010-OF0072/src/testApp.h -------------------------------------------------------------------------------- /developer_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/developer_notes.md -------------------------------------------------------------------------------- /docs/_sources/core.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_sources/core.rst.txt -------------------------------------------------------------------------------- /docs/_sources/extended.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_sources/extended.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/install.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_sources/install.rst.txt -------------------------------------------------------------------------------- /docs/_static/_sphinx_javascript_frameworks_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/_sphinx_javascript_frameworks_compat.js -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/core.html -------------------------------------------------------------------------------- /docs/docbuild/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/Makefile -------------------------------------------------------------------------------- /docs/docbuild/_build/doctrees/core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/doctrees/core.doctree -------------------------------------------------------------------------------- /docs/docbuild/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/docbuild/_build/doctrees/extended.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/doctrees/extended.doctree -------------------------------------------------------------------------------- /docs/docbuild/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/docbuild/_build/doctrees/install.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/doctrees/install.doctree -------------------------------------------------------------------------------- /docs/docbuild/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_sources/core.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_sources/core.rst.txt -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_sources/extended.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_sources/extended.rst.txt -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_sources/install.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_sources/install.rst.txt -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/_sphinx_javascript_frameworks_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/_sphinx_javascript_frameworks_compat.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/docbuild/_build/html/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/core.html -------------------------------------------------------------------------------- /docs/docbuild/_build/html/extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/extended.html -------------------------------------------------------------------------------- /docs/docbuild/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/docbuild/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/index.html -------------------------------------------------------------------------------- /docs/docbuild/_build/html/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/install.html -------------------------------------------------------------------------------- /docs/docbuild/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/docbuild/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/search.html -------------------------------------------------------------------------------- /docs/docbuild/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/docbuild/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/conf.py -------------------------------------------------------------------------------- /docs/docbuild/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/core.rst -------------------------------------------------------------------------------- /docs/docbuild/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/doxygen.config -------------------------------------------------------------------------------- /docs/docbuild/extended.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/extended.rst -------------------------------------------------------------------------------- /docs/docbuild/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/index.rst -------------------------------------------------------------------------------- /docs/docbuild/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/install.rst -------------------------------------------------------------------------------- /docs/docbuild/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/make.bat -------------------------------------------------------------------------------- /docs/docbuild/xml/classA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classA.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classThis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classThis.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classconvert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classconvert.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classfft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classfft.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classgranularSynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classgranularSynth.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiAccelerator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiAccelerator.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiAsyncKuramotoOscillator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiAsyncKuramotoOscillator.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiAtomBook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiAtomBook.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiAtomBookPlayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiAtomBookPlayer.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiBarkScaleAnalyser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiBarkScaleAnalyser.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiBiquad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiBiquad.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiBits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiBits.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiChorus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiChorus.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiClock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiClock.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiCollider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiCollider.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiConvert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiConvert.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiConvolve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiConvolve.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiCounter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiCounter.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiDCBlocker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiDCBlocker.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiDattaroReverb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiDattaroReverb.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiDelayline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiDelayline.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiDyn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiDyn.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiDynamics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiDynamics.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiEnv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiEnv.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiEnvGen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiEnvGen.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiEnvelope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiEnvelope.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiEnvelopeFollowerType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiEnvelopeFollowerType.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiFFT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiFFT.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiFFTAdaptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiFFTAdaptor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiFFTOctaveAnalyzer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiFFTOctaveAnalyzer.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiFilter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiFilter.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiFlanger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiFlanger.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiFreeVerb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiFreeVerb.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiFreeVerbStereo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiFreeVerbStereo.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiGrain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiGrain.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiGrainBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiGrainBase.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiGrainPlayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiGrainPlayer.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiGrainWindowCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiGrainWindowCache.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiHats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiHats.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiIFFT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiIFFT.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiIFFTAdaptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiIFFTAdaptor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiIndex.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiKick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiKick.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiKuramotoOscillator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiKuramotoOscillator.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiKuramotoOscillatorSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiKuramotoOscillatorSet.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiLagExp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiLagExp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiLine.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiMFCCAdaptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiMFCCAdaptor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiMFCCAnalyser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiMFCCAnalyser.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiMap.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiMath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiMath.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiMix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiMix.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiNonlinearity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiNonlinearity.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiOsc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiOsc.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiPitchShift.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiPitchShift.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiPoll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiPoll.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiPolyBLEP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiPolyBLEP.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiRMS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiRMS.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiRatioSeq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiRatioSeq.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiReverbBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiReverbBase.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiReverbFilters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiReverbFilters.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiRingBuf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiRingBuf.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSVF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSVF.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSample.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSampleAndHold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSampleAndHold.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSampler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSampler.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSatReverb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSatReverb.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSelect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSelect.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSelectX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSelectX.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSettings.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSnare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSnare.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiStep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiStep.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiStretch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiStretch.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiSynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiSynth.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiTimeStretch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiTimeStretch.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiTrigger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiTrigger.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiXFade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiXFade.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiZXToPulse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiZXToPulse.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiZeroCrossingDetector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiZeroCrossingDetector.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classmaxiZeroCrossingRate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classmaxiZeroCrossingRate.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/classvectorTools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/classvectorTools.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/combine.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/combine.xslt -------------------------------------------------------------------------------- /docs/docbuild/xml/compound.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/compound.xsd -------------------------------------------------------------------------------- /docs/docbuild/xml/dir_68267d1309a1af8e8297ef4c3efbcdba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/dir_68267d1309a1af8e8297ef4c3efbcdba.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/dir_87a455bccb09a92130c26a11a880c98a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/dir_87a455bccb09a92130c26a11a880c98a.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/fft_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/fft_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/fft_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/fft_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/index.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/index.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/index.xsd -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiAtoms_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiAtoms_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiAtoms_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiAtoms_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiBark_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiBark_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiBark_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiBark_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiClock_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiClock_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiClock_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiClock_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiConvolve_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiConvolve_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiConvolve_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiConvolve_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiFFT_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiFFT_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiFFT_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiFFT_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiGrains_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiGrains_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiGrains_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiGrains_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiMFCC_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiMFCC_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiMFCC_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiMFCC_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiPolyBLEP_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiPolyBLEP_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiReverb_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiReverb_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiReverb_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiReverb_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiSynths_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiSynths_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxiSynths_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxiSynths_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maxim_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maxim_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maximilian_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maximilian_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maximilian_8embind_8cpp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maximilian_8embind_8cpp.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/maximilian_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/maximilian_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/namespaceemscripten.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/namespaceemscripten.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/namespacestd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/namespacestd.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/stb__vorbis_8c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/stb__vorbis_8c.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/stb__vorbis_8h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/stb__vorbis_8h.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structCRCscan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structCRCscan.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structCodebook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structCodebook.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structFloor0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structFloor0.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structFloor1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structFloor1.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structMapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structMapping.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structMappingChannel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structMappingChannel.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structMode.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structProbedPage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structProbedPage.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structResidue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structResidue.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structVorbisPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structVorbisPoint.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structblackmanHarrisWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structblackmanHarrisWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structblackmanNutallWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structblackmanNutallWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structcosineWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structcosineWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structgaussianWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structgaussianWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structhammingWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structhammingWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structhannWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structhannWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structmaxiAccelerator_1_1queuedAtom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structmaxiAccelerator_1_1queuedAtom.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structmaxiAtom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structmaxiAtom.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structmaxiEnvGen_1_1envStage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structmaxiEnvGen_1_1envStage.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structmaxiGaborAtom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structmaxiGaborAtom.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structrectWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structrectWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structstb__vorbis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structstb__vorbis.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structstb__vorbis__alloc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structstb__vorbis__alloc.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structstb__vorbis__info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structstb__vorbis__info.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structtriangleNZWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structtriangleNZWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/structtriangleWinFunctor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/structtriangleWinFunctor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/unionFloor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/unionFloor.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/unionfloat__conv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/unionfloat__conv.xml -------------------------------------------------------------------------------- /docs/docbuild/xml/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/docbuild/xml/xml.xsd -------------------------------------------------------------------------------- /docs/extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/extended.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/_sources/core.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_sources/core.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/extended.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_sources/extended.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/install.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_sources/install.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/_sphinx_javascript_frameworks_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/_sphinx_javascript_frameworks_compat.js -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/core.html -------------------------------------------------------------------------------- /docs/html/extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/extended.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/install.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/install.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /js/audio-worklet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/Makefile -------------------------------------------------------------------------------- /js/audio-worklet/common/VariableBufferKernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/common/VariableBufferKernel.cc -------------------------------------------------------------------------------- /js/audio-worklet/common/maximilian.post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/common/maximilian.post.js -------------------------------------------------------------------------------- /js/audio-worklet/common/maximilian.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/common/maximilian.util.js -------------------------------------------------------------------------------- /js/audio-worklet/common/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/common/test.js -------------------------------------------------------------------------------- /js/audio-worklet/common/wasm-audio-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/common/wasm-audio-helper.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/00-custom-processor/custom-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/00-custom-processor/custom-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/00-custom-processor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/00-custom-processor/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/01-maxi-processor-base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/01-maxi-processor-base/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/01-maxi-processor-base/maxi-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/01-maxi-processor-base/maxi-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/02-maxi-processor-hot-swapping-worklets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/02-maxi-processor-hot-swapping-worklets/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/02-maxi-processor-hot-swapping-worklets/maxi-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/02-maxi-processor-hot-swapping-worklets/maxi-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/03-maxi-processor-eval-message/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/03-maxi-processor-eval-message/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/03-maxi-processor-eval-message/maxi-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/03-maxi-processor-eval-message/maxi-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/04-maxi-processor-audioin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/04-maxi-processor-audioin/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/04-maxi-processor-audioin/maxi-audio-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/04-maxi-processor-audioin/maxi-audio-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/05-maxi-processor-sequencer/909.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/05-maxi-processor-sequencer/909.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/05-maxi-processor-sequencer/909a.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/05-maxi-processor-sequencer/909a.ogg -------------------------------------------------------------------------------- /js/audio-worklet/examples/05-maxi-processor-sequencer/909b.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/05-maxi-processor-sequencer/909b.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/05-maxi-processor-sequencer/909closed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/05-maxi-processor-sequencer/909closed.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/05-maxi-processor-sequencer/909open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/05-maxi-processor-sequencer/909open.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/05-maxi-processor-sequencer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/05-maxi-processor-sequencer/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/05-maxi-processor-sequencer/maxi-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/05-maxi-processor-sequencer/maxi-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/06-maxi-processor-synth-pool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/06-maxi-processor-synth-pool/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/06-maxi-processor-synth-pool/maxi-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/06-maxi-processor-synth-pool/maxi-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/07-maxi-processor-granular/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/07-maxi-processor-granular/beat2.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/07-maxi-processor-granular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/07-maxi-processor-granular/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/07-maxi-processor-granular/maxi-audio-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/07-maxi-processor-granular/maxi-audio-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/08-maxi-processor-proto-engine/909.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/08-maxi-processor-proto-engine/909.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/08-maxi-processor-proto-engine/909b.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/08-maxi-processor-proto-engine/909b.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/08-maxi-processor-proto-engine/909closed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/08-maxi-processor-proto-engine/909closed.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/08-maxi-processor-proto-engine/909open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/08-maxi-processor-proto-engine/909open.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/08-maxi-processor-proto-engine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/08-maxi-processor-proto-engine/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/08-maxi-processor-proto-engine/maxi-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/08-maxi-processor-proto-engine/maxi-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/09-maxi-processor-ring-buffer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/09-maxi-processor-ring-buffer/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/09-maxi-processor-ring-buffer/ring-buffer-maxi-audio-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/09-maxi-processor-ring-buffer/ring-buffer-maxi-audio-processor.js -------------------------------------------------------------------------------- /js/audio-worklet/examples/10-maxi-processor-FFT/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/10-maxi-processor-FFT/beat2.wav -------------------------------------------------------------------------------- /js/audio-worklet/examples/10-maxi-processor-FFT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/10-maxi-processor-FFT/index.html -------------------------------------------------------------------------------- /js/audio-worklet/examples/10-maxi-processor-FFT/maxi-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/audio-worklet/examples/10-maxi-processor-FFT/maxi-processor.js -------------------------------------------------------------------------------- /js/purejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/Makefile -------------------------------------------------------------------------------- /js/purejs/maxi-purejs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/maxi-purejs.cpp -------------------------------------------------------------------------------- /js/purejs/module-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/module-bindings.js -------------------------------------------------------------------------------- /js/purejs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/readme.md -------------------------------------------------------------------------------- /js/purejs/tester/tester.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/tester/tester.bc -------------------------------------------------------------------------------- /js/purejs/tester/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/tester/tester.cpp -------------------------------------------------------------------------------- /js/purejs/tester/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/tester/tester.h -------------------------------------------------------------------------------- /js/purejs/tester/tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/tester/tester.js -------------------------------------------------------------------------------- /js/purejs/tester/wrapper.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/tester/wrapper.bc -------------------------------------------------------------------------------- /js/purejs/tester/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/purejs/tester/wrapper.cpp -------------------------------------------------------------------------------- /js/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/readme.md -------------------------------------------------------------------------------- /js/script-processor-node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/Makefile -------------------------------------------------------------------------------- /js/script-processor-node/examples/00-maximillian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/00-maximillian.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/01-test-tone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/01-test-tone.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/02-two-tones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/02-two-tones.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/03-AM-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/03-AM-1.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/04-AM-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/04-AM-2.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/05-FM-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/05-FM-1.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/06-FM-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/06-FM-2.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/07-sample-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/07-sample-player.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/08-counting-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/08-counting-1.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/08-counting-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/08-counting-2.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/08-counting-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/08-counting-3.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/08-counting-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/08-counting-4.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/09-envelopes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/09-envelopes.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/10-filters-SVF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/10-filters-SVF.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/10-filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/10-filters.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/11-advanced-filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/11-advanced-filters.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/12-mixing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/12-mixing.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/13-monosynth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/13-monosynth.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/14-polysnth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/14-polysnth.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/15-replicant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/15-replicant.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/16-compressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/16-compressor.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/17-drum-machine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/17-drum-machine.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/18-enveloping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/18-enveloping.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/19-additive-synthesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/19-additive-synthesis.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/20-analysis-FFT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/20-analysis-FFT.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/20-analysis-MFCC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/20-analysis-MFCC.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/20-analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/20-analysis.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/21-granular-synthesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/21-granular-synthesis.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/22-sample-player-base64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/22-sample-player-base64.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/23-kuramoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/23-kuramoto.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/24-bitsynthesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/24-bitsynthesis.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/25-StateVariableFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/25-StateVariableFilter.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/26-SpectralProcessing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/26-SpectralProcessing.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/27-MFCCs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/27-MFCCs.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/28-nonlinearities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/28-nonlinearities.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/29-sample-trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/29-sample-trigger.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/X_ManualWebAudio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/X_ManualWebAudio.html -------------------------------------------------------------------------------- /js/script-processor-node/examples/audio/beat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/audio/beat2.wav -------------------------------------------------------------------------------- /js/script-processor-node/examples/audio/crebit2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/audio/crebit2.ogg -------------------------------------------------------------------------------- /js/script-processor-node/examples/audio/hat12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/audio/hat12.wav -------------------------------------------------------------------------------- /js/script-processor-node/examples/audio/kick1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/audio/kick1.wav -------------------------------------------------------------------------------- /js/script-processor-node/examples/audio/kick3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/audio/kick3.wav -------------------------------------------------------------------------------- /js/script-processor-node/examples/audio/snare1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/audio/snare1.wav -------------------------------------------------------------------------------- /js/script-processor-node/examples/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/examples/server.py -------------------------------------------------------------------------------- /js/script-processor-node/maximilian.post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/maximilian.post.js -------------------------------------------------------------------------------- /js/script-processor-node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/script-processor-node/readme.md -------------------------------------------------------------------------------- /js/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/js/server.py -------------------------------------------------------------------------------- /src/libs/PolyBLEP/PolyBLEP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/PolyBLEP/PolyBLEP.cpp -------------------------------------------------------------------------------- /src/libs/PolyBLEP/PolyBLEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/PolyBLEP/PolyBLEP.h -------------------------------------------------------------------------------- /src/libs/PolyBLEP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/PolyBLEP/README.md -------------------------------------------------------------------------------- /src/libs/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/fft.cpp -------------------------------------------------------------------------------- /src/libs/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/fft.h -------------------------------------------------------------------------------- /src/libs/maxiAtoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiAtoms.cpp -------------------------------------------------------------------------------- /src/libs/maxiAtoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiAtoms.h -------------------------------------------------------------------------------- /src/libs/maxiBark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiBark.cpp -------------------------------------------------------------------------------- /src/libs/maxiBark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiBark.h -------------------------------------------------------------------------------- /src/libs/maxiClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiClock.cpp -------------------------------------------------------------------------------- /src/libs/maxiClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiClock.h -------------------------------------------------------------------------------- /src/libs/maxiConvolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiConvolve.cpp -------------------------------------------------------------------------------- /src/libs/maxiConvolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiConvolve.h -------------------------------------------------------------------------------- /src/libs/maxiFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiFFT.cpp -------------------------------------------------------------------------------- /src/libs/maxiFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiFFT.h -------------------------------------------------------------------------------- /src/libs/maxiGrains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiGrains.cpp -------------------------------------------------------------------------------- /src/libs/maxiGrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiGrains.h -------------------------------------------------------------------------------- /src/libs/maxiMFCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiMFCC.cpp -------------------------------------------------------------------------------- /src/libs/maxiMFCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiMFCC.h -------------------------------------------------------------------------------- /src/libs/maxiPolyBLEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiPolyBLEP.h -------------------------------------------------------------------------------- /src/libs/maxiReverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiReverb.cpp -------------------------------------------------------------------------------- /src/libs/maxiReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiReverb.h -------------------------------------------------------------------------------- /src/libs/maxiSynths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiSynths.cpp -------------------------------------------------------------------------------- /src/libs/maxiSynths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxiSynths.h -------------------------------------------------------------------------------- /src/libs/maxim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/maxim.h -------------------------------------------------------------------------------- /src/libs/sineTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/sineTable.h -------------------------------------------------------------------------------- /src/libs/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/stb_vorbis.c -------------------------------------------------------------------------------- /src/libs/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/libs/stb_vorbis.h -------------------------------------------------------------------------------- /src/maximilian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/maximilian.cpp -------------------------------------------------------------------------------- /src/maximilian.embind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/maximilian.embind.cpp -------------------------------------------------------------------------------- /src/maximilian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micknoise/Maximilian/HEAD/src/maximilian.h --------------------------------------------------------------------------------