Benjamin Saunders
Benjamin Saunders
[Build123d](https://github.com/gumyr/build123d) describes itself as "an evolution of CadQuery", relies on the same hellish-to-package cadquery-ocp library, and seems to have some community overlap.
OCP 7.7.0 builds, but evaluating the build123d derivation currently fails with infinite recursion in ezdxf and I have no idea why. I'm not very comfortable with flakes, or python for...
Experimentally I see that e.g. `fbm_3d` with parameters similar to the defaults seems to return values mostly in the range of -0.1..0.1. `simplex_3d` likes even smaller magnitudes. This is very...
Simplex noise is [said](http://weber.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf) to have "a well-defined and continuous gradient everywhere that can be computed quite cheaply." This is immensely valuable for generating smooth normals for noise-displaced geometry, and...
Explicit generic parameters aren't parsed, and `impl Trait` arguments don't work due to the generic parameter the macro adds itself. This makes it difficult to abstract SIMD code. I can't...
Helps avoid massive code duplication when an algorithm might be required in both forms, as e.g. in simdnoise. This would probably require moving all the duplicated interfaces into a common...
The current text has only this to say regarding color spaces: > Rendering operations involving composition of submitted layers should be assumed to be internally performed by the runtime in...
`XR_MSFT_controller_model` supplies controller models as GLTF data and identifies GLTF nodes of interest through `XrControllerModelNodePropertiesMSFT`. This identification is made by reference to GLTF node *names*, which is odd: - GLTF...
This is needed to allow applications to respond to changes in runtime configuration (e.g. SteamVR's application supersampling slider) without restarting or polling `xrEnumerateViewConfigurationViews` every frame. Applications should be encouraged to...