Daniel Filonik
Daniel Filonik
I created an example with a simple usage example of a geometry without attributes. Is there any documentation on how to add a description/screenshot? (CI fails because of it...)
> Via the `npm run make-screenshot examplename`. I tried this, and I am getting: > ERROR! Diff wrong in 0.095 of pixels in file: webgl2_buffergeometry_no_attributes Maybe this is platform dependent?...
> > Via the `npm run make-screenshot examplename`. > > I tried this, and I am getting: > > > ERROR! Diff wrong in 0.095 of pixels in file: webgl2_buffergeometry_no_attributes...
Hm, I would have thought that `drawCount` essentially works the same way for instanced geometries. I am still not sure what the expected result of passing `Infinity` actually is. I...
Yeah, I think the problem in #19430 still exists, but for a reason unrelated to `drawCount`. It comes down to `_maxInstanceCount` being `undefined`/`NaN`, which results in `instanceCount` being `NaN` on...
I have pushed a minimal fix which should now also fully address #19430.
Here is my updated working version of the instanced example, if desired I can also add it to the pull request: https://gist.github.com/filonik/9ff5d59945a16785bbd524534112e3d3
Same problem, rather annoying.
Having `add`, `multiply`, `and`, `or` take arbitrary arguments is very reminiscent of Scheme. It may be worth considering going all the way with it, see: https://www.gnu.org/software/mit-scheme/documentation/stable/mit-scheme-ref.pdf This would also include...
Thanks to the excellent customizability of mathjs, it is not too difficult to replace the builtin functions with n-ary versions: ```js import { create, evaluateDependencies, factory, typed } from 'mathjs'...