Results 286 comments of Moritz Mœller
trafficstars

Implementation is public in [`polyhedron_ops::Polyhedron::try_from()`](https://docs.rs/polyhedron-ops/latest/polyhedron_ops/struct.Polyhedron.html#method.try_from). Source is [here](https://github.com/virtualritz/polyhedron-ops/blob/master/src/parser.rs).

P.S.: thank you for this great tool!!!

> Please strip out clippy fixes, as they make some code lines less readable, thanks. I think these came probably from `cargo fmt`, not `clippy --fix`. Can you tell me...

> EDIT: A quick search shows https://github.com/irondash/cargokit/blob/main/docs/architecture.md where you can have `cargokit.yaml` and configure nightly toolchain, which seems related. Didn't see this in my email. This solved it! Thanks heaps!...

It would be great to have example OBJs for both cases (colored vertices before/after textured vertices) and add them to this issue for reference.

I would also have a simple and pragmatic suggestion. Use the [Fira](https://en.wikipedia.org/wiki/Fira_(typeface)) font family. [Fira Sans](https://fonts.google.com/specimen/Fira+Sans) is a sans-serif (as the name suggests) and has [Mono](https://fonts.google.com/specimen/Fira+Mono)(spaced)/[Code](https://fonts.google.com/specimen/Fira+Code) variants with different weights...

I did it for my `glyphana` tool. I.e. embed a compressed version of the OTF.

Specifically it uses [include_flate](https://crates.io/crates/include_flate/0.3.0). Something like: ```rust flate!(pub static FIRA_SANS_FONT: [u8] from "assets/FiraSans-Regular.otf"); ```

+1 A baseline grid is the basis for all my layout work in any DTP app I used in the last 30 years.

Maybe a `snap()` function, similar to `align()`, that can reference grids defined somewhere else in the document?