Doug Moen
Doug Moen
The PR is safe to merge without testing because the only change is to comments.
I agree.There is a C/C++ implementation from Google ([Dawn](https://dawn.googlesource.com/dawn)) that doesn't introduce a Rust dependency. Nice to know that gfx-rs now has a C++ wrapper. WGPU is on track to...
The "aligned_alloc" problem is now fixed with today's checkin (bug in libfive). This might be enough for @meleano to build curv. The github actions Windows build is still broken, which...
Here's another one. 3 Bezier splines joined into a closed 2D shape. https://www.shadertoy.com/view/llyXDV
I do not fully grok why union seams appear. I believe that it is related to how the distance field looks at short distances away from the surface. The surface...
Never mind, I have already tested Grosso's latest version.
I am surprised that setting $class in the translate() arguments sets a dynamically scoped variable that's visible in the children. The more obvious place to set $class is in the...
Relativity.scad seems to use $class to pass "style sheet" information from a parent node in the CSG tree, down to its children. It turns out that I need a mechanism...
2D preview and 2D render look different, and I agree they should look the same. 2D objects can't be exported as STL, because they aren't 3D. The Z-thickness of a...
@GilesBathgate: that call to polyhedron() is bad. It returns a non-manifold mesh which will cause CGAL assertions if you try to operate on it further. There has been discussion elsewhere...