Martín Andrighetti
Martín Andrighetti
> Because only actual Unicode symbols and syntax shorthands participate in the auto-matching and auto-scaling. Symbol notation and escape sequence don't, without explicit `lr`. Why is that so?
The docs can be viewed offline using a local HTTP server. However, because function documentation files have no extension, a custom server that serves extensionless files as `text/html` has to...
I'm in the same situation. What are the steps to follow in order to fix this?
I was iterating on a dual contouring implementation, and I was interpolating normals between two points, so it really was just taking two unit `Vec3` and interpolating them across the...
For now I'd prefer to just force users to unwrap the `u7` and then wrap it back. Supporting arithmetic operations on bounded types is a can of worms that I...
To be honest, the usage of `u4` and `u7` in this library is probably a mistake. Sure, it makes the library somewhat more type-safe, but at a the cost of...
Hello! Sorry for the late reply. This looks good, although it belongs more as an `fmt::Debug` implementation than an `fmt::Display` implementation. `Display` is intended for when a type has a...
The reason why a `LiveEvent` converts into a `TrackEventKind` instead of a `TrackEvent` is that: `TrackEvent` = `TrackEventKind` + (timing info) Timing info is not so easy to work with...
I like it. It would be nice to implement the `serde` traits for at least all of the "live" types (that is, `LiveEvent` and all of its components). Additionally, we...