├── .DS_Store ├── .gitattributes ├── .gitignore ├── LICENCE ├── Latent-Playground.v1.1.2.amxd ├── README.md ├── assets ├── .DS_Store ├── Automations.png ├── Bending.gif ├── Bending.png ├── Control.gif ├── Control.png ├── Core.png ├── Load.gif ├── Manipulation.png ├── Modulators.png └── Preset.png ├── bfg-modulator-2.p.maxpat ├── docs └── mcs.nn~.maxref.xml ├── externals ├── .DS_Store ├── fluid.buf2list.mxe64 ├── fluid.buf2list.mxo │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid.buf2list │ │ └── _CodeSignature │ │ └── CodeResources ├── fluid.bufcompose~.mxe64 ├── fluid.bufcompose~.mxo │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid.bufcompose~ │ │ └── _CodeSignature │ │ └── CodeResources ├── fluid.bufmfcc~.mxe64 ├── fluid.bufmfcc~.mxo │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid.bufmfcc~ │ │ └── _CodeSignature │ │ └── CodeResources ├── fluid.bufnoveltyfeature~.mxe64 ├── fluid.bufnoveltyfeature~.mxo │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid.bufnoveltyfeature~ │ │ └── _CodeSignature │ │ └── CodeResources ├── fluid.bufspectralshape~.mxe64 ├── fluid.bufspectralshape~.mxo │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid.bufspectralshape~ │ │ └── _CodeSignature │ │ └── CodeResources ├── fluid.bufstats~.mxe64 ├── fluid.bufstats~.mxo │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid.bufstats~ │ │ └── _CodeSignature │ │ └── CodeResources ├── fluid.libmanipulation.mxe64 ├── fluid.libmanipulation.mxo │ └── Contents │ │ ├── CodeResources │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid.libmanipulation │ │ └── _CodeSignature │ │ └── CodeResources ├── fluid.list2buf.mxe64 └── fluid.list2buf.mxo │ └── Contents │ ├── CodeResources │ ├── Info.plist │ ├── MacOS │ └── fluid.list2buf │ └── _CodeSignature │ └── CodeResources └── medias ├── .DS_Store ├── circle.js ├── copy_to_master.js ├── generator.js ├── gradient.js ├── gradients.jxf ├── help.pdf ├── import.js ├── picts ├── .DS_Store ├── Beta.png ├── Beta.svg ├── Laplace.png ├── Laplace.svg ├── Normal.png ├── Normal.svg ├── Uniforme.png ├── Uniforme.svg ├── add.svg ├── align.svg ├── audiopower.svg ├── delay.svg ├── delete.svg ├── edit.svg ├── faders.svg ├── flip.svg ├── folders.svg ├── gear.svg ├── grid.png ├── image1.svg ├── joystick.svg ├── link.svg ├── load.svg ├── loop.svg ├── mappings.svg ├── mod.svg ├── question.svg ├── recall.svg ├── reset.svg └── save.svg ├── plotter.js ├── plotterB.js ├── recorder.js └── windows.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _No_Git/ 2 | Params-Recorder.amxd 3 | externals/mcs.nn~.mxo/ 4 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/LICENCE -------------------------------------------------------------------------------- /Latent-Playground.v1.1.2.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/Latent-Playground.v1.1.2.amxd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/Automations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Automations.png -------------------------------------------------------------------------------- /assets/Bending.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Bending.gif -------------------------------------------------------------------------------- /assets/Bending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Bending.png -------------------------------------------------------------------------------- /assets/Control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Control.gif -------------------------------------------------------------------------------- /assets/Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Control.png -------------------------------------------------------------------------------- /assets/Core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Core.png -------------------------------------------------------------------------------- /assets/Load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Load.gif -------------------------------------------------------------------------------- /assets/Manipulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Manipulation.png -------------------------------------------------------------------------------- /assets/Modulators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Modulators.png -------------------------------------------------------------------------------- /assets/Preset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/assets/Preset.png -------------------------------------------------------------------------------- /bfg-modulator-2.p.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/bfg-modulator-2.p.maxpat -------------------------------------------------------------------------------- /docs/mcs.nn~.maxref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/docs/mcs.nn~.maxref.xml -------------------------------------------------------------------------------- /externals/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/.DS_Store -------------------------------------------------------------------------------- /externals/fluid.buf2list.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.buf2list.mxe64 -------------------------------------------------------------------------------- /externals/fluid.buf2list.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.buf2list.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.buf2list.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.buf2list.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.buf2list.mxo/Contents/MacOS/fluid.buf2list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.buf2list.mxo/Contents/MacOS/fluid.buf2list -------------------------------------------------------------------------------- /externals/fluid.buf2list.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.buf2list.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufcompose~.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufcompose~.mxe64 -------------------------------------------------------------------------------- /externals/fluid.bufcompose~.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufcompose~.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufcompose~.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufcompose~.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.bufcompose~.mxo/Contents/MacOS/fluid.bufcompose~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufcompose~.mxo/Contents/MacOS/fluid.bufcompose~ -------------------------------------------------------------------------------- /externals/fluid.bufcompose~.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufcompose~.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufmfcc~.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufmfcc~.mxe64 -------------------------------------------------------------------------------- /externals/fluid.bufmfcc~.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufmfcc~.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufmfcc~.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufmfcc~.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.bufmfcc~.mxo/Contents/MacOS/fluid.bufmfcc~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufmfcc~.mxo/Contents/MacOS/fluid.bufmfcc~ -------------------------------------------------------------------------------- /externals/fluid.bufmfcc~.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufmfcc~.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufnoveltyfeature~.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufnoveltyfeature~.mxe64 -------------------------------------------------------------------------------- /externals/fluid.bufnoveltyfeature~.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufnoveltyfeature~.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufnoveltyfeature~.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufnoveltyfeature~.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.bufnoveltyfeature~.mxo/Contents/MacOS/fluid.bufnoveltyfeature~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufnoveltyfeature~.mxo/Contents/MacOS/fluid.bufnoveltyfeature~ -------------------------------------------------------------------------------- /externals/fluid.bufnoveltyfeature~.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufnoveltyfeature~.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufspectralshape~.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufspectralshape~.mxe64 -------------------------------------------------------------------------------- /externals/fluid.bufspectralshape~.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufspectralshape~.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufspectralshape~.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufspectralshape~.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.bufspectralshape~.mxo/Contents/MacOS/fluid.bufspectralshape~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufspectralshape~.mxo/Contents/MacOS/fluid.bufspectralshape~ -------------------------------------------------------------------------------- /externals/fluid.bufspectralshape~.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufspectralshape~.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufstats~.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufstats~.mxe64 -------------------------------------------------------------------------------- /externals/fluid.bufstats~.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufstats~.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.bufstats~.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufstats~.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.bufstats~.mxo/Contents/MacOS/fluid.bufstats~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufstats~.mxo/Contents/MacOS/fluid.bufstats~ -------------------------------------------------------------------------------- /externals/fluid.bufstats~.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.bufstats~.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /externals/fluid.libmanipulation.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.libmanipulation.mxe64 -------------------------------------------------------------------------------- /externals/fluid.libmanipulation.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.libmanipulation.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.libmanipulation.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.libmanipulation.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.libmanipulation.mxo/Contents/MacOS/fluid.libmanipulation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.libmanipulation.mxo/Contents/MacOS/fluid.libmanipulation -------------------------------------------------------------------------------- /externals/fluid.libmanipulation.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.libmanipulation.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /externals/fluid.list2buf.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.list2buf.mxe64 -------------------------------------------------------------------------------- /externals/fluid.list2buf.mxo/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.list2buf.mxo/Contents/CodeResources -------------------------------------------------------------------------------- /externals/fluid.list2buf.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.list2buf.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/fluid.list2buf.mxo/Contents/MacOS/fluid.list2buf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.list2buf.mxo/Contents/MacOS/fluid.list2buf -------------------------------------------------------------------------------- /externals/fluid.list2buf.mxo/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/externals/fluid.list2buf.mxo/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /medias/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/.DS_Store -------------------------------------------------------------------------------- /medias/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/circle.js -------------------------------------------------------------------------------- /medias/copy_to_master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/copy_to_master.js -------------------------------------------------------------------------------- /medias/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/generator.js -------------------------------------------------------------------------------- /medias/gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/gradient.js -------------------------------------------------------------------------------- /medias/gradients.jxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/gradients.jxf -------------------------------------------------------------------------------- /medias/help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/help.pdf -------------------------------------------------------------------------------- /medias/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/import.js -------------------------------------------------------------------------------- /medias/picts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/.DS_Store -------------------------------------------------------------------------------- /medias/picts/Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Beta.png -------------------------------------------------------------------------------- /medias/picts/Beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Beta.svg -------------------------------------------------------------------------------- /medias/picts/Laplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Laplace.png -------------------------------------------------------------------------------- /medias/picts/Laplace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Laplace.svg -------------------------------------------------------------------------------- /medias/picts/Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Normal.png -------------------------------------------------------------------------------- /medias/picts/Normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Normal.svg -------------------------------------------------------------------------------- /medias/picts/Uniforme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Uniforme.png -------------------------------------------------------------------------------- /medias/picts/Uniforme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/Uniforme.svg -------------------------------------------------------------------------------- /medias/picts/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/add.svg -------------------------------------------------------------------------------- /medias/picts/align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/align.svg -------------------------------------------------------------------------------- /medias/picts/audiopower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/audiopower.svg -------------------------------------------------------------------------------- /medias/picts/delay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/delay.svg -------------------------------------------------------------------------------- /medias/picts/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/delete.svg -------------------------------------------------------------------------------- /medias/picts/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/edit.svg -------------------------------------------------------------------------------- /medias/picts/faders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/faders.svg -------------------------------------------------------------------------------- /medias/picts/flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/flip.svg -------------------------------------------------------------------------------- /medias/picts/folders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/folders.svg -------------------------------------------------------------------------------- /medias/picts/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/gear.svg -------------------------------------------------------------------------------- /medias/picts/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/grid.png -------------------------------------------------------------------------------- /medias/picts/image1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/image1.svg -------------------------------------------------------------------------------- /medias/picts/joystick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/joystick.svg -------------------------------------------------------------------------------- /medias/picts/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/link.svg -------------------------------------------------------------------------------- /medias/picts/load.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/load.svg -------------------------------------------------------------------------------- /medias/picts/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/loop.svg -------------------------------------------------------------------------------- /medias/picts/mappings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/mappings.svg -------------------------------------------------------------------------------- /medias/picts/mod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/mod.svg -------------------------------------------------------------------------------- /medias/picts/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/question.svg -------------------------------------------------------------------------------- /medias/picts/recall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/recall.svg -------------------------------------------------------------------------------- /medias/picts/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/reset.svg -------------------------------------------------------------------------------- /medias/picts/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/picts/save.svg -------------------------------------------------------------------------------- /medias/plotter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/plotter.js -------------------------------------------------------------------------------- /medias/plotterB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/plotterB.js -------------------------------------------------------------------------------- /medias/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/recorder.js -------------------------------------------------------------------------------- /medias/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasBrgt/Latent-Playground/HEAD/medias/windows.js --------------------------------------------------------------------------------