wrnrlr

Results 20 comments of wrnrlr

In my experience this is not true. With this little system I can always make sure the orange line is drawn over the blue line. ``` fn setup_paint(mut cmd: Commands)...

Deno has conditional exports in when running with `--compat`, and you can have a "deno" condition, but I don't see how that will help in this case. I've tried another...

I wanted todo something similar to deno's fresh which uses preact. I was under the assumption that SSR worked something like `JSX -> hyper dom script -> html`. But I...

Interesting, I remember playing around with the depth/z value and I found/(remember) that negative values don't work. Could you try with only positive values.

There is indeed something weird going on, you can add `{sanitizeOps:false, sanitizeResources:false}` as options to the example above to fix the test error but it is weird to have to...

Just an update, someone on discord mentioned that the step functions in my example need to be await'ed and indeed that solved at least the problem I wanted to report....

Is their a downside to just using `if (Deno.test) { ... }`

Oh, what is the advised way to put tests in the same file as your code (ala rust), otherwise I think this suggestion or something like it is a good...

Tradeoffs between time and space are always difficult to estimate but one guesses that always having to normalise a point by dividing by its homogeneous coordinate using the Newton-Raphson method...

I've not run into memory problems yet, but I am not against this in principle. Lets call this new type Vec3 instead of CompactPoint, how would this Vec3 work in...