Orace
Orace
I had indeed a _palettes.json_ in mind when I wrote this proposal. My idea is to move built-in palettes to initial value of palettes.json. They will be modifiable/removable like any...
I'm currently working on a [palette editor UI](https://codepen.io/Oracetonick/pen/qBYdwaN). I plan to integrate it in wled. Feedback are welcome (I'm more of a C# guy than vanilla JS).
@blazoncek, I plan to integrate it in WLED current UI as a _standard_ palette: - [ ] integration - [ ] switch to edit mode with a collapse button -...
I didn't try it, and have only used the 0.13.3 release Does the custom palette are saved in presets? I was thinking of a per segment custom palette that will...
As I understand it, if you use one of these custom palettes in a preset and then change the palette, the preset will use the new colors 🤔 I don't...
> Parsing 16 steps palette needs at least 2k JSON buffer. 🤔 I think many people are able to do much better knowing that a flat json array of integers...
The C# language since [v7.1](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-7-1#default-literal-expressions) allow to write `if (reversedEdge != default)` Anyway you have to be sure that the default value will not be meaningful in some corner case.
> I'm stuck keeping all 100K Nope. `Any` consume one element max, so `Memoize` will only cache one element.
`Partition` functionality are close to this.
What does `{1, 2}.EquiInterleave({3})` should yield ? - 1, 3, 2, exception - 1, 3, exception