├── .idea ├── description.html ├── project-template.xml ├── copyright │ └── profiles_settings.xml ├── scopes │ └── scope_settings.xml ├── dictionaries │ └── florian.xml ├── encodings.xml ├── .gitignore ├── vcs.xml ├── modules.xml ├── libraries │ └── core.xml ├── artifacts │ ├── Ilda.xml │ ├── Ilda_jar.xml │ ├── Ilda_jar2.xml │ └── Release.xml ├── compiler.xml └── misc.xml ├── docs ├── package-list ├── element-list ├── tag-search-index.js ├── module-search-index.js ├── resources │ ├── x.png │ └── glass.png ├── package-search-index.js ├── script-dir │ ├── images │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_dadada_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ └── jquery-ui.structure.min.css ├── type-search-index.js ├── index.html ├── allclasses-noframe.html ├── allclasses-frame.html ├── ilda │ ├── package-frame.html │ └── package-tree.html ├── jquery-ui.overrides.css ├── allpackages-index.html ├── deprecated-list.html ├── constant-values.html ├── index-files │ ├── index-16.html │ ├── index-8.html │ ├── index-10.html │ ├── index-17.html │ ├── index-2.html │ ├── index-3.html │ ├── index-11.html │ ├── index-4.html │ ├── index-15.html │ ├── index-5.html │ ├── index-1.html │ ├── index-12.html │ └── index-6.html ├── overview-tree.html ├── script.js └── allclasses-index.html ├── examples-wip ├── Rectangles │ └── Rectangles.pde ├── Optimisation │ ├── Optimisation.pde │ └── sketch.properties ├── LsxLiveOscOutput │ ├── CircuitPulse │ │ └── Particle.pde │ ├── RectanglesToLSX │ │ ├── ildaframeToLsx.pde │ │ ├── sketch.properties │ │ └── RectanglesToLSX.pde │ └── LoadAndDisplayIldaFile │ │ ├── data │ │ └── lines.ild │ │ └── LoadAndDisplayIldaFile.pde └── LoadDisplaySVG │ └── LoadDisplaySVG.pde ├── META-INF └── MANIFEST.MF ├── examples ├── Rectangles │ ├── sketch.properties │ └── Rectangles.pde ├── AudioEffects │ ├── Effect.pde │ ├── WaveformEffect.pde │ ├── SpectrumBarsEffect.pde │ ├── VUEffect.pde │ ├── CircleWaveEffect.pde │ └── AudioEffects.pde ├── ParseFile │ ├── data │ │ └── Circles.ild │ └── ParseFile.pde ├── Beams │ ├── Effect.pde │ ├── BeamEffect.pde │ ├── LineEffect.pde │ ├── ConeEffect.pde │ ├── SineEffect.pde │ └── Beams.pde ├── LoadAndDisplayIldaFile │ ├── data │ │ └── lines.ild │ └── LoadAndDisplayIldaFile.pde ├── CircuitPulse │ ├── Particle.pde │ └── CircuitPulse.pde ├── Text │ └── Text.pde └── Template │ └── Template.pde ├── .gitignore ├── src └── main │ └── java │ └── be │ └── cmbsoft │ └── ilda │ ├── Utilities.java │ ├── FileParser.java │ ├── PicReader.java │ ├── OptimisationSettings.java │ ├── IldaReader.java │ └── IldaPalette.java ├── .github └── workflows │ ├── maven.yml │ ├── maven-publish.yml │ └── maven-perform-release.yml ├── pom.xml ├── README.md ├── Ilda.txt └── library.properties /.idea/description.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/package-list: -------------------------------------------------------------------------------- 1 | ilda 2 | -------------------------------------------------------------------------------- /.idea/project-template.xml: -------------------------------------------------------------------------------- 1 |