deluksic
deluksic
I can also give this a go if you agree with the suggestion.
I am already pre-transposing the ndarray like this, to get the correct format: ``` array.transpose(1, 0, 2); ``` However, I felt its a little weird that a transpose needs to...
On the other hand, what would be very confusing is: this flag makes no sense if you *don't* pass in an ArrayLike object for data, since that code path does...
I have to say, this tool is really awesome, just started using it, and even though defaults were not optimal, I was able to match my use case almost exactly....
I started a fork in which I implement `regl.texture3D`. You can also use `EXT_texture_norm16` extension with (for now only) `r16` and `r16_snorm` texture formats. It is a WIP, but it...
This visualization gives a slightly biased impression due to surface area being square of the radius. I noticed this because some had close to 50% ratio but looked maybe 1/4...
adding files to `.prettierignore` is a really bad solution, what happens if I move the file?
fwiw I'm using [typed-css-modules](https://github.com/Quramy/typed-css-modules#readme) It works quite well, but you have to deal with extra .d.ts files everywhere. Would be nice if there was a solution that "just worked" both...
We had the exact same case (worker -> importing file -> importing same worker). However, instead of hanging, we got: ``` Unexpected early exit. This happens when Promises returned by...
Can similar issues happen even if we don't use the callback form? I use this form a lot: ```tsx ``` In this case, I assumed that `` would be unmounted...