Results 281 comments of Moritz Mœller
trafficstars

I wasn't aware of Truescad. I will add Catalan an Archimedian solids, prism and anti-prisms to `polyhedron-ops` at some stage. Open to PRs. :) If you like to play with...

Actually, Catalan & Archimedian solids can easily be created using Platonic solids and operators in this crate. I just published a new version of `polyheron-ops` which should work w/o 3Delight...

If I add this, is it ok to have `tessellate()` always return a `Mesh` and add a method, `triangulate()`, that returns a `TriangleMesh`? The option is using generics is quite...

Wait, the code in crate suggests a the mesh is a mix of triangles and quads when the contouring is finished. I do not want to represent triangles as degenerate...

Ok, I need to understand one thing: does the algorithm initially generate only quads it generate a mix of quads and triangles? The [code at the end of `compute_quad()`](https://github.com/hmeyer/tessellation/blob/e1d1eecf132cfc8da9f9617666513e94b8cafa08/src/manifold_dual_contouring.rs#L947) suggests...

While *random* indexing is a pain I wonder who needs random indexing? The crate doesn't seem to do anything with `Mesh::faces` besides adding faces to it. And once you want...

Disregard my last reply. I deleted it. I missed the outside `Vec` around `SmallVec` in your reply. :)

So, have a look [here](https://github.com/virtualritz/tessellation/commit/6fa921355a8d94eae7490a3a2958dcd2b9af95ba). I will add some example(s) tomorrow and create a PR then.

> Also I think the obj & pops export should go into a separate crate [...] You can't define a trait like `From` outside a crate where neither type/struct the...

OBJ export is a few lines of code and very handy for testing. I.e. it doesn't make the crate slower to download and/or to build (`obj` feature is off by...