├── .github └── workflows │ ├── maven-perform-release.yml │ ├── maven-publish.yml │ └── maven.yml ├── .gitignore ├── .idea ├── .gitignore ├── artifacts │ ├── Ilda.xml │ ├── Ilda_jar.xml │ ├── Ilda_jar2.xml │ └── Release.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── description.html ├── dictionaries │ └── florian.xml ├── encodings.xml ├── libraries │ └── core.xml ├── misc.xml ├── modules.xml ├── project-template.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml └── vcs.xml ├── Ilda.txt ├── META-INF └── MANIFEST.MF ├── README.md ├── docs ├── allclasses-frame.html ├── allclasses-index.html ├── allclasses-noframe.html ├── allpackages-index.html ├── constant-values.html ├── deprecated-list.html ├── element-list ├── help-doc.html ├── ilda │ ├── IldaFrame.html │ ├── IldaPalette.html │ ├── IldaPoint.html │ ├── IldaReader.html │ ├── IldaRenderer.html │ ├── IldaWriter.html │ ├── OptimisationSettings.html │ ├── Optimiser.html │ ├── PicReader.html │ ├── package-frame.html │ ├── package-summary.html │ └── package-tree.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-16.html │ ├── index-17.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── jquery-ui.overrides.css ├── member-search-index.js ├── module-search-index.js ├── overview-tree.html ├── package-list ├── package-search-index.js ├── resources │ ├── glass.png │ └── x.png ├── script-dir │ ├── images │ │ ├── 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 │ │ ├── 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 │ ├── jquery-3.5.1.min.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ └── jquery-ui.structure.min.css ├── script.js ├── search.js ├── stylesheet.css ├── tag-search-index.js └── type-search-index.js ├── examples-wip ├── LoadDisplaySVG │ ├── LoadDisplaySVG.pde │ └── data │ │ └── bot1.svg ├── LsxLiveOscOutput │ ├── CircuitPulse │ │ └── Particle.pde │ ├── LoadAndDisplayIldaFile │ │ ├── LoadAndDisplayIldaFile.pde │ │ └── data │ │ │ └── lines.ild │ └── RectanglesToLSX │ │ ├── RectanglesToLSX.pde │ │ ├── ildaframeToLsx.pde │ │ └── sketch.properties ├── Optimisation │ ├── Optimisation.pde │ └── sketch.properties └── Rectangles │ └── Rectangles.pde ├── examples ├── AudioEffects │ ├── AudioEffects.pde │ ├── CircleWaveEffect.pde │ ├── Effect.pde │ ├── SpectrumBarsEffect.pde │ ├── VUEffect.pde │ └── WaveformEffect.pde ├── Beams │ ├── BeamEffect.pde │ ├── Beams.pde │ ├── ConeEffect.pde │ ├── Effect.pde │ ├── LineEffect.pde │ └── SineEffect.pde ├── CircuitPulse │ ├── CircuitPulse.pde │ └── Particle.pde ├── LoadAndDisplayIldaFile │ ├── LoadAndDisplayIldaFile.pde │ └── data │ │ └── lines.ild ├── ParseFile │ ├── ParseFile.pde │ └── data │ │ └── Circles.ild ├── Rectangles │ ├── Rectangles.pde │ └── sketch.properties ├── Template │ └── Template.pde └── Text │ └── Text.pde ├── library.properties ├── pom.xml └── src └── main └── java └── be └── cmbsoft └── ilda ├── FileParser.java ├── IldaFrame.java ├── IldaPalette.java ├── IldaPoint.java ├── IldaReader.java ├── IldaRenderer.java ├── IldaWriter.java ├── OptimisationSettings.java ├── Optimiser.java ├── PicReader.java └── Utilities.java /.github/workflows/maven-perform-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.github/workflows/maven-perform-release.yml -------------------------------------------------------------------------------- /.github/workflows/maven-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.github/workflows/maven-publish.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/artifacts/Ilda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/artifacts/Ilda.xml -------------------------------------------------------------------------------- /.idea/artifacts/Ilda_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/artifacts/Ilda_jar.xml -------------------------------------------------------------------------------- /.idea/artifacts/Ilda_jar2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/artifacts/Ilda_jar2.xml -------------------------------------------------------------------------------- /.idea/artifacts/Release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/artifacts/Release.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/description.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/dictionaries/florian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/dictionaries/florian.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/libraries/core.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colouredmirrorball/Ilda/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/project-template.xml: -------------------------------------------------------------------------------- 1 |