Results 281 comments of Moritz Mœller
trafficstars

I can for now confirm that the mesh from the sphere sample does look like it's not a 2D manifold. I tried to cleanup this mesh, exported as OBJ in...

The above mesh has zero post processing. But what Wings3D does, on import, is turn the mesh into a 2D manifold. I.e. it may delete some non-manifold topological features locally...

This is really a bummer as `wax` IMHO is most useful for cross-platform CLI utilities on Windows. On macOS and Linux the shells most people use have some sort of...

It seems the only things missing are `new()` and `with_capacity()`. I looked at the `aHash` crate. They use two traits (orphan rules), `HashMapExt` and `HashSetExt`, that provide those and need...

I'm looking into both (the changes and the `no_std` stuff). Should have something tomorrow.

There is a PR (#35) that should close this issue. Unless you wanto to copy `aHash` and add full newtype wrappers (`GxHashMap`/`GxHashSet`) at some point.

> However, this violates the [search order in the Rhai docs](https://rhai.rs/book/language/fn-namespaces.html#global-namespace) (and is confusing!), so let's leave this issue open. Shall I report this upstream to the `rhai` peeps?

> It works if you rename your function to not collide with the existing function: > > ```rust > fn length(x, y) { > sqrt(x*x + y*y) > } >...

Ah, I see, it doesn't take a closure any more. Sorry about the noise, kindly ignore!

Docs say there is a `draw_rgb` function in Rhai but I get an error when trying to call this. Also: what's the signature of this function?