Results 176 comments of Moritz Mœller

Very cool! Let me know when there is something in the repo to test. :)

> > I think the original idea is from Paul Bourke. He calls it a Spiral Honeycomb Mosaic (SHM). > > For the record, I came up with the spiral...

Supposedly `bindgen` got a lot better at wrapping C++ – with [these caveats](https://rust-lang.github.io/rust-bindgen/cpp.html#unsupported-features). Does `libfive` rely on any of those unsupported features? If it doesn't I'll try auto-wrapping the C++...

@mkeeter What are `libfive`s non-negotiable deps? It looks like the build instructions in the README include all the deps for `studio` as well? Maybe that could be split in the...

Cheers! Maybe that sentence could be added to the build instructions?

I see. It wasn't clear to me at all. I think it would be clearer to add this in brackets to the deps themselves. Would you accept a PR for...

[Done](https://github.com/libfive/libfive/pull/367) (I hope).

My `build.rs` segfaults. From the looks of it, during `bindgen`. I.e. `libfive` gets built just fine via the `cmake` crate and then ... boom: ``` error: failed to run custom...

So I abandoned my tries to get the C++ header through `bindgen` for the time being and went with the C API instead. I have a rough version of the...

So I now have two implementations for `Tree` in Rust. Using references with (mandatory) lifetimes: ```rust pub struct Tree1, } impl Tree Tree(&'b self, b: &'b Tree) -> Tree Drop...